From 3721bd45d72e50436ee760b03ae533d49bbb8724 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Sun, 26 Feb 2017 17:21:35 -0400 Subject: lib: replace deprecated n_q_count_threads with status returning version This function was deprecated in notmuch 0.21. We re-use the name for a status returning version, and deprecate the _st name. --- notmuch-count.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'notmuch-count.c') diff --git a/notmuch-count.c b/notmuch-count.c index 493be30f..cf80ee25 100644 --- a/notmuch-count.c +++ b/notmuch-count.c @@ -98,7 +98,7 @@ print_count (notmuch_database_t *notmuch, const char *query_str, printf ("%u", ucount); break; case OUTPUT_THREADS: - status = notmuch_query_count_threads_st (query, &ucount); + status = notmuch_query_count_threads (query, &ucount); if (print_status_query ("notmuch count", query, status)) return -1; printf ("%u", ucount); -- cgit v1.2.3