]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch-restore.c
cli: convert notmuch_bool_t to stdbool
[notmuch] / notmuch-restore.c
index 0025e2c316bed501fc19bb4412ffb3c858dac14d..dee19c206d13b9ceb415a582e99bd747cd95d01b 100644 (file)
@@ -211,7 +211,7 @@ parse_sup_line (void *ctx, char *line,
            tok_len++;
        }
 
-       if (tag_op_list_append (tag_ops, tok, FALSE))
+       if (tag_op_list_append (tag_ops, tok, false))
            return -1;
     }
 
@@ -223,7 +223,7 @@ int
 notmuch_restore_command (notmuch_config_t *config, int argc, char *argv[])
 {
     notmuch_database_t *notmuch;
-    notmuch_bool_t accumulate = FALSE;
+    bool accumulate = false;
     tag_op_flag_t flags = 0;
     tag_op_list_t *tag_ops;