summaryrefslogtreecommitdiffstats
path: root/notmuch-show.c
diff options
context:
space:
mode:
authorJani Nikula <jani@nikula.org>2017-10-01 23:53:18 +0300
committerDavid Bremner <david@tethera.net>2017-10-04 22:02:57 -0300
commit9a0df8128c1a2f92d03035aebbd7a90eb93ec601 (patch)
tree14334a1c448b74d50cbd502903fd03354df54d90 /notmuch-show.c
parent816097f05b490d4150e85a63f2a08065c7ab6741 (diff)
cli: use notmuch_bool_t for boolean argument in show
Pedantically correct, although they're the same underlying type.
Diffstat (limited to 'notmuch-show.c')
-rw-r--r--notmuch-show.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-show.c b/notmuch-show.c
index d0e86f41..3d11a40c 100644
--- a/notmuch-show.c
+++ b/notmuch-show.c
@@ -1085,7 +1085,7 @@ notmuch_show_command (notmuch_config_t *config, int argc, char *argv[])
.output_body = TRUE,
};
int format = NOTMUCH_FORMAT_NOT_SPECIFIED;
- int exclude = TRUE;
+ notmuch_bool_t exclude = TRUE;
notmuch_bool_t entire_thread_set = FALSE;
notmuch_bool_t single_message;