From: Trever L. Adams Date: Fri, 30 Jun 2017 03:30:29 +0000 (-0600) Subject: FS-9785: fix ./mod_conference.h:353:23: error: enumerator value for ‘EFLAG_BLIND_MEMB... X-Git-Tag: v1.6.19~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb37138f14c8d4e33e7e5eb91f37a156ad2b6578;p=thirdparty%2Ffreeswitch.git 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) --- diff --git a/src/mod/applications/mod_conference/mod_conference.h b/src/mod/applications/mod_conference/mod_conference.h index f707cd059c..71a17815b1 100644 --- a/src/mod/applications/mod_conference/mod_conference.h +++ b/src/mod/applications/mod_conference/mod_conference.h @@ -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