提交 fb37138f authored 作者: Trever L. Adams's avatar Trever L. Adams 提交者: Anthony Minessale

FS-9785: fix ./mod_conference.h:353:23: error: enumerator value for…

FS-9785: fix ./mod_conference.h:353:23: error: enumerator value for ‘EFLAG_BLIND_MEMBER’ is not an integer constant expression [-Werror=pedantic] EFLAG_BLIND_MEMBER = (1 << 31)
上级 aaf86d8b
......@@ -348,7 +348,7 @@ typedef enum {
EFLAG_HUP_MEMBER = (1 << 28),
EFLAG_PLAY_FILE_DONE = (1 << 29),
EFLAG_SET_POSITION_MEMBER = (1 << 30),
EFLAG_BLIND_MEMBER = (1 << 31)
EFLAG_BLIND_MEMBER = (int)(1U << 31U)
} event_type_t;
#ifdef OPENAL_POSITIONING
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论