mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
fix pedantic error in MSGLEVEL enum
reported by horgh
This commit is contained in:
parent
ad8221835c
commit
bcea697e7c
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ enum {
|
||||||
MSGLEVEL_HIDDEN = 0x10000000, /* Hidden from view */
|
MSGLEVEL_HIDDEN = 0x10000000, /* Hidden from view */
|
||||||
MSGLEVEL_RESERVED1 = 0x20000000,
|
MSGLEVEL_RESERVED1 = 0x20000000,
|
||||||
MSGLEVEL_RESERVED2 = 0x40000000,
|
MSGLEVEL_RESERVED2 = 0x40000000,
|
||||||
MSGLEVEL_FORMAT = 0x80000000 /* Format data */
|
MSGLEVEL_FORMAT = (int)0x80000000 /* Format data */
|
||||||
};
|
};
|
||||||
/* clang-format on */
|
/* clang-format on */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue