]> git.sesse.net Git - plocate/blobdiff - plocate.cpp
Bump version number.
[plocate] / plocate.cpp
index 55e19342b84cb4ac4d808e403c48e33aa75dfa5f..c2bb17ca1452e5b63468c7e45ae5a305db1dc059 100644 (file)
@@ -500,6 +500,8 @@ void do_search_file(const vector<Needle> &needles, const char *filename)
                // the pattern and done a union of them, but that's a lot of
                // 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<float>(steady_clock::now() - start).count(), matched);
                if (only_count) {
                        printf("%" PRId64 "\n", matched);
                }
@@ -698,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;
                }