diff options
| author | Jani Nikula <jani@nikula.org> | 2017-10-01 23:53:17 +0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-10-04 22:02:45 -0300 |
| commit | 816097f05b490d4150e85a63f2a08065c7ab6741 (patch) | |
| tree | de6e6482a5312a3b6a3b0b352e1fbe8620a583e9 | |
| parent | ed43b8ddcd01e098a457463ceb0c0fa6b74e0a8a (diff) | |
hex-xcode: use notmuch_bool_t for boolean arguments
Pedantically correct, although they're the same underlying type.
| -rw-r--r-- | test/hex-xcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hex-xcode.c b/test/hex-xcode.c index bc2df713..221ccdb9 100644 --- a/test/hex-xcode.c +++ b/test/hex-xcode.c @@ -45,7 +45,7 @@ main (int argc, char **argv) { int dir = DECODE; - int omit_newline = FALSE; + notmuch_bool_t omit_newline = FALSE; notmuch_opt_desc_t options[] = { { .opt_keyword = &dir, .name = "direction", .keywords = |
