X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=notmuch-show.c;h=6400594898718ac606364f894fabeee693133f68;hb=5ce8e0b11b40f733e6231d2067764e76717a341a;hp=7451d5ab563cd03a33df05671d4efce5af7eb12c;hpb=a8a270522231b186493ecd97d56a1343382d51d8;p=notmuch diff --git a/notmuch-show.c b/notmuch-show.c index 7451d5ab..64005948 100644 --- a/notmuch-show.c +++ b/notmuch-show.c @@ -908,7 +908,7 @@ do_show_single (void *ctx, notmuch_status_t status; unsigned int count; - status = notmuch_query_count_messages_st (query, &count); + status = notmuch_query_count_messages (query, &count); if (print_status_query ("notmuch show", query, status)) return 1; @@ -917,7 +917,7 @@ do_show_single (void *ctx, return 1; } - status = notmuch_query_search_messages_st (query, &messages); + status = notmuch_query_search_messages (query, &messages); if (print_status_query ("notmuch show", query, status)) return 1; @@ -947,7 +947,7 @@ do_show (void *ctx, notmuch_messages_t *messages; notmuch_status_t status, res = NOTMUCH_STATUS_SUCCESS; - status= notmuch_query_search_threads_st (query, &threads); + status= notmuch_query_search_threads (query, &threads); if (print_status_query ("notmuch show", query, status)) return 1;