mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18: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 */
|
/* 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 },
|
{ 'D', "draft", false },
|
||||||
{ 'F', "flagged", false },
|
{ 'F', "flagged", false },
|
||||||
{ 'P', "passed", false },
|
{ 'P', "passed", false },
|
||||||
|
|
Loading…
Reference in a new issue