From: David Bremner Date: Thu, 26 May 2022 11:30:00 +0000 (-0300) Subject: lib/message: use false from stdbool.h X-Git-Tag: 0.37_rc0~114^2 X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=4f8a2d2253143d5dd3cee87d82bc48e1540d6a6d;p=notmuch-old lib/message: use false from stdbool.h As far as I know, this is just a style / consistency thing, unless notmuch code starts defining FALSE inconsistently with false. --- diff --git a/lib/message.cc b/lib/message.cc index bd3cb5af..54609fcd 100644 --- a/lib/message.cc +++ b/lib/message.cc @@ -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; }