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)
This commit is contained in:
parent
cdfe49ee0d
commit
fb46f87b07
|
@ -350,7 +350,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
|
||||
|
|
Loading…
Reference in New Issue