From d18c964ba703df54efc56a313ff605cc4c9a5c98 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Mon, 13 Jul 2015 18:14:10 -0400 Subject: [PATCH] FS-7769: fix build issue --- src/mod/applications/mod_conference/mod_conference.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 5900c8deea..a46aceeafe 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -793,6 +793,7 @@ static inline switch_bool_t conference_test_flag(conference_obj_t *conference, c { return !!conference->flags[flag]; } +#if 0 static inline void conference_set_mflag(conference_obj_t *conference, member_flag_t mflag) { conference->mflags[mflag] = 1; @@ -805,6 +806,7 @@ static inline switch_bool_t conference_test_mflag(conference_obj_t *conference, { return !!conference->mflags[mflag]; } +#endif static inline switch_bool_t cdr_test_mflag(conference_cdr_node_t *np, member_flag_t mflag) { return !!np->mflags[mflag];