mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
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:
parent
6810881705
commit
4f8a2d2253
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue