1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-07 02:54:19 -04:00

Merge pull request #37 from ailin-nemui/int-min-reached

fix pedantic error in MSGLEVEL enum
This commit is contained in:
ailin-nemui 2021-09-21 22:35:30 +02:00 committed by GitHub
commit b0fdbb144d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 */