From: Richard Mudgett Date: Wed, 5 Sep 2012 19:42:17 +0000 (+0000) Subject: Fix compile error. X-Git-Tag: 10.9.0-rc1~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=550e7e88b002572904b081aa719f7da4f79742d9;p=thirdparty%2Fasterisk.git Fix compile error. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@372372 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/dsp.c b/main/dsp.c index 4272158ff5..9379c3c1c3 100644 --- a/main/dsp.c +++ b/main/dsp.c @@ -501,7 +501,7 @@ static void ast_mf_detect_init (mf_detect_state_t *s, unsigned int sample_rate) int i; s->hits[0] = s->hits[1] = s->hits[2] = s->hits[3] = s->hits[4] = 0; for (i = 0; i < 6; i++) { - goertzel_init (&s->tone_out[i], mf_tones[i], MF_SIZE, sample_rate); + goertzel_init (&s->tone_out[i], mf_tones[i], MF_GSIZE, sample_rate); } s->current_sample = 0; s->current_hit = 0;