aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-08 22:17:08 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-08 22:17:08 +0000
commit1946a33958b18c0d148c44b4b780c8ee9c6e0282 (patch)
treeaf62ed19606912dd1513b4e40e83c25b00ac2309 /apps/app_meetme.c
parent3e7c804c76acb3461e71a7869fde975285ba5701 (diff)
Fix compilation of app_meetme.
Reported by ebroad in #asterisk-bugs git-svn-id: http://svn.digium.com/svn/asterisk/trunk@217286 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 6027e1d24..b482217a5 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -3275,7 +3275,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
if ((conf->transframe[idx]->frametype != AST_FRAME_NULL) &&
can_write(chan, confflags)) {
struct ast_frame *cur;
- if (musiconhold && !ast_dsp_silence(dsp, conf->transframe[index], &confsilence) && confsilence < MEETME_DELAYDETECTTALK) {
+ if (musiconhold && !ast_dsp_silence(dsp, conf->transframe[idx], &confsilence) && confsilence < MEETME_DELAYDETECTTALK) {
ast_moh_stop(chan);
mohtempstopped = 1;
}