From fb37138f14c8d4e33e7e5eb91f37a156ad2b6578 Mon Sep 17 00:00:00 2001 From: "Trever L. Adams" Date: Thu, 29 Jun 2017 21:30:29 -0600 Subject: [PATCH] =?UTF-8?q?FS-9785:=20fix=20./mod=5Fconference.h:353:23:?= =?UTF-8?q?=20error:=20enumerator=20value=20for=20=E2=80=98EFLAG=5FBLIND?= =?UTF-8?q?=5FMEMBER=E2=80=99=20is=20not=20an=20integer=20constant=20expre?= =?UTF-8?q?ssion=20[-Werror=3Dpedantic]=20EFLAG=5FBLIND=5FMEMBER=20=3D=20(?= =?UTF-8?q?1=20<<=2031)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mod/applications/mod_conference/mod_conference.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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