mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
Janitor project to convert sizeof to ARRAY_LEN macro.
(closes issue #13002) Reported by: caio1982 Patches: janitor_arraylen5.diff uploaded by caio1982 (license 22) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@129045 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -472,9 +472,9 @@ static int load_module(void)
|
||||
int index;
|
||||
|
||||
/* XXX better init ? */
|
||||
for (index = 0; index < (sizeof(ulaw_silence) / sizeof(ulaw_silence[0])); index++)
|
||||
for (index = 0; index < ARRAY_LEN(ulaw_silence); index++)
|
||||
ulaw_silence[index] = AST_LIN2MU(0);
|
||||
for (index = 0; index < (sizeof(alaw_silence) / sizeof(alaw_silence[0])); index++)
|
||||
for (index = 0; index < ARRAY_LEN(alaw_silence); index++)
|
||||
alaw_silence[index] = AST_LIN2A(0);
|
||||
|
||||
if ( ast_format_register(&pcm_f)
|
||||
|
Reference in New Issue
Block a user