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.
This commit is contained in:
David Bremner 2022-05-26 08:30:00 -03:00
parent 6810881705
commit 4f8a2d2253

View 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;
}