diff options
| author | David Bremner <david@tethera.net> | 2022-05-26 08:30:00 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2022-05-26 08:30:00 -0300 |
| commit | 4f8a2d2253143d5dd3cee87d82bc48e1540d6a6d (patch) | |
| tree | 69fe11829572a73a5b1730c4268e6cef5bdda779 | |
| parent | 68108817054d3a88e52fe2f8d9a118b4b26f6e26 (diff) | |
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.
| -rw-r--r-- | lib/message.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
