X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-tag.c;h=05b1837d7c5038ee6cf9ad5f387ca8264bcab172;hp=630efa65399cc310d9a5b9c6e228b90a03668deb;hb=0bb05ff693737c5b91d6a64f6209984a6c418c46;hpb=4a6721970a42a9f86149fb5d395d1001fed2d305 diff --git a/notmuch-tag.c b/notmuch-tag.c index 630efa65..05b1837d 100644 --- a/notmuch-tag.c +++ b/notmuch-tag.c @@ -194,8 +194,8 @@ notmuch_tag_command (notmuch_config_t *config, int argc, char *argv[]) notmuch_database_t *notmuch; struct sigaction action; tag_op_flag_t tag_flags = TAG_FLAG_NONE; - notmuch_bool_t batch = FALSE; - notmuch_bool_t remove_all = FALSE; + bool batch = false; + bool remove_all = false; FILE *input = stdin; const char *input_file_name = NULL; int opt_index; @@ -223,7 +223,7 @@ notmuch_tag_command (notmuch_config_t *config, int argc, char *argv[]) notmuch_process_shared_options (argv[0]); if (input_file_name) { - batch = TRUE; + batch = true; input = fopen (input_file_name, "r"); if (input == NULL) { fprintf (stderr, "Error opening %s for reading: %s\n",