X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=plocate.cpp;h=c2bb17ca1452e5b63468c7e45ae5a305db1dc059;hb=97c57726bc81c979386c623ad7586c2677fdd865;hp=e863edbc4ab9294c89bcbd45e822c560190e0f7f;hpb=5905e207c8ca995c4ffeac138d0697dcf5ddc6cc;p=plocate diff --git a/plocate.cpp b/plocate.cpp index e863edb..c2bb17c 100644 --- a/plocate.cpp +++ b/plocate.cpp @@ -501,7 +501,7 @@ void do_search_file(const vector &needles, const char *filename) // work for fairly unclear gain.) uint64_t matched = scan_all_docids(needles, fd, corpus); dprintf("Done in %.1f ms, found %" PRId64 " matches.\n", - 1e3 * duration(steady_clock::now() - start).count(), matched); + 1e3 * duration(steady_clock::now() - start).count(), matched); if (only_count) { printf("%" PRId64 "\n", matched); } @@ -700,7 +700,7 @@ int main(int argc, char **argv) setlocale(LC_ALL, ""); for (;;) { int option_index = 0; - int c = getopt_long(argc, argv, "bcd:hil:n:0wVD", long_options, &option_index); + int c = getopt_long(argc, argv, "bcd:hil:n:0rwVD", long_options, &option_index); if (c == -1) { break; }