X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=lib%2Fmessage-property.cc;h=d72c74c34ebca2710783ae1bbc680386592d4a2d;hb=008a5e92eb157e2bb8622cb2fbf644deba5ba4b4;hp=f32d555062d2bce0decf7cd5f9b33894655e7924;hpb=0f314c0c99befea599a68bea51d759b4133efef6;p=notmuch diff --git a/lib/message-property.cc b/lib/message-property.cc index f32d5550..d72c74c3 100644 --- a/lib/message-property.cc +++ b/lib/message-property.cc @@ -38,7 +38,7 @@ notmuch_message_get_property (notmuch_message_t *message, const char *key, const static notmuch_status_t _notmuch_message_modify_property (notmuch_message_t *message, const char *key, const char *value, - notmuch_bool_t delete_it) + bool delete_it) { notmuch_private_status_t private_status; notmuch_status_t status; @@ -76,13 +76,13 @@ _notmuch_message_modify_property (notmuch_message_t *message, const char *key, c notmuch_status_t notmuch_message_add_property (notmuch_message_t *message, const char *key, const char *value) { - return _notmuch_message_modify_property (message, key, value, FALSE); + return _notmuch_message_modify_property (message, key, value, false); } notmuch_status_t notmuch_message_remove_property (notmuch_message_t *message, const char *key, const char *value) { - return _notmuch_message_modify_property (message, key, value, TRUE); + return _notmuch_message_modify_property (message, key, value, true); } notmuch_status_t