From 5b7933fe5e47ad0bc333b405f554c20f8cc2efed Mon Sep 17 00:00:00 2001 From: Brett Bryant Date: Fri, 11 Jul 2008 18:09:35 +0000 Subject: Janitor patch to change uses of sizeof to ARRAY_LEN (closes issue #13054) Reported by: pabelanger Patches: ARRAY_LEN.patch2 uploaded by pabelanger (license 224) Tested by: seanbright git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@130129 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/dsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/dsp.c') diff --git a/main/dsp.c b/main/dsp.c index f9c8a2d94..f3adcf0be 100644 --- a/main/dsp.c +++ b/main/dsp.c @@ -393,7 +393,7 @@ struct ast_dsp { static void mute_fragment(struct ast_dsp *dsp, fragment_t *fragment) { - if (dsp->mute_fragments >= sizeof(dsp->mute_data) / sizeof(dsp->mute_data[0])) { + if (dsp->mute_fragments >= ARRAY_LEN(dsp->mute_data)) { ast_log(LOG_ERROR, "Too many fragments to mute. Ignoring\n"); return; } @@ -1440,7 +1440,7 @@ static void ast_dsp_prog_reset(struct ast_dsp *dsp) dsp->gsamp_size = modes[dsp->progmode].size; dsp->gsamps = 0; - for (x = 0; x < sizeof(modes[dsp->progmode].freqs) / sizeof(modes[dsp->progmode].freqs[0]); x++) { + for (x = 0; x < ARRAY_LEN(modes[dsp->progmode].freqs); x++) { if (modes[dsp->progmode].freqs[x]) { goertzel_init(&dsp->freqs[x], (float)modes[dsp->progmode].freqs[x], dsp->gsamp_size); max = x + 1; -- cgit v1.2.3