mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
lib/message: mark flag2tag as const
This table is intended to be immutable
This commit is contained in:
parent
929386fad9
commit
b1b6798588
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ struct maildir_flag_tag {
|
|||
};
|
||||
|
||||
/* ASCII ordered table of Maildir flags and associated tags */
|
||||
static struct maildir_flag_tag flag2tag[] = {
|
||||
static const struct maildir_flag_tag flag2tag[] = {
|
||||
{ 'D', "draft", false },
|
||||
{ 'F', "flagged", false },
|
||||
{ 'P', "passed", false },
|
||||
|
|
Loading…
Reference in a new issue