]> git.cworth.org Git - notmuch/commitdiff
lib/message: use false from stdbool.h
authorDavid Bremner <david@tethera.net>
Thu, 26 May 2022 11:30:00 +0000 (08:30 -0300)
committerDavid Bremner <david@tethera.net>
Thu, 26 May 2022 11:30:00 +0000 (08:30 -0300)
As far as I know, this is just a style / consistency thing, unless
notmuch code starts defining FALSE inconsistently with false.

lib/message.cc

index bd3cb5af02dbefeb01c80b7bc083962a3dea018f..54609fcddd680c66c7087b21089e4e22ed996cbd 100644 (file)
@@ -169,7 +169,7 @@ _notmuch_message_create_for_document (const void *talloc_owner,
 
     message->doc = doc;
     message->termpos = 0;
-    message->modified = FALSE;
+    message->modified = false;
 
     return message;
 }