X-Git-Url: https://git.cworth.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-reindex.c;fp=notmuch-reindex.c;h=49eacd47d64196e525d2a7c208c14ee9a6c855de;hp=b40edbb6df3253f30827b624a98f73fc5d7b2acf;hb=2944d5913319056dfec5c23065932fd1c87a96f6;hpb=a2e7af5b6986bca5a2bb2752f892cb86a9767b3c diff --git a/notmuch-reindex.c b/notmuch-reindex.c index b40edbb6..49eacd47 100644 --- a/notmuch-reindex.c +++ b/notmuch-reindex.c @@ -49,11 +49,11 @@ reindex_query (notmuch_database_t *notmuch, const char *query_string, notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS; - query = notmuch_query_create (notmuch, query_string); - if (query == NULL) { - fprintf (stderr, "Out of memory.\n"); + status = notmuch_query_create_with_syntax (notmuch, query_string, + shared_option_query_syntax (), + &query); + if (print_status_database ("notmuch reindex", notmuch, status)) return 1; - } /* reindexing is not interested in any special sort order */ notmuch_query_set_sort (query, NOTMUCH_SORT_UNSORTED);