diff options
| author | Piotr Trojanek <piotr.trojanek@gmail.com> | 2017-06-16 23:50:25 +0100 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-06-25 09:39:35 -0300 |
| commit | 85c830405886207196aedbd0a2b757b227ba769d (patch) | |
| tree | cdcf550a58d7e07a3b7a3ee8a42179f526cfe973 /notmuch-reply.c | |
| parent | 410b96080ceec15ced70e684115f604380c5b4f6 (diff) | |
fix wrong printf formatting of signed/unsigned integers
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 b88f1d31..e6c16641 100644 --- a/notmuch-reply.c +++ b/notmuch-reply.c @@ -635,7 +635,7 @@ static int do_reply(notmuch_config_t *config, return 1; if (count != 1) { - fprintf (stderr, "Error: search term did not match precisely one message (matched %d messages).\n", count); + fprintf (stderr, "Error: search term did not match precisely one message (matched %u messages).\n", count); return 1; } |
