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:
Trever L. Adams 2017-06-29 21:30:29 -06:00 committed by Anthony Minessale
parent aaf86d8bb6
commit fb37138f14
1 changed files with 1 additions and 1 deletions

View File

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