diff options
| author | David Bremner <david@tethera.net> | 2017-02-26 17:21:34 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-03-22 08:35:07 -0300 |
| commit | 5ce8e0b11b40f733e6231d2067764e76717a341a (patch) | |
| tree | b58f3e8f804d2d06e7070be05c71941c342c38a3 /notmuch-reply.c | |
| parent | 86cbd215eb67d7b996c977352a50e70c101cb641 (diff) | |
lib: replace deprecated n_q_count_messages 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. One or two
remaining uses of the (removed) non-status returning version fixed at
the same time
Diffstat (limited to 'notmuch-reply.c')
| -rw-r--r-- | notmuch-reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-reply.c b/notmuch-reply.c index 85efc702..2fa6e5a3 100644 --- a/notmuch-reply.c +++ b/notmuch-reply.c @@ -630,7 +630,7 @@ static int do_reply(notmuch_config_t *config, if (format == FORMAT_JSON || format == FORMAT_SEXP) { unsigned count; - status = notmuch_query_count_messages_st (query, &count); + status = notmuch_query_count_messages (query, &count); if (print_status_query ("notmuch reply", query, status)) return 1; |
