mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-19 03:07:59 +00:00
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
This commit is contained in:
@@ -232,7 +232,7 @@ static struct ast_cli_entry cli[] = {
|
||||
|
||||
void threadstorage_init(void)
|
||||
{
|
||||
ast_cli_register_multiple(cli, sizeof(cli) / sizeof(cli[0]));
|
||||
ast_cli_register_multiple(cli, ARRAY_LEN(cli));
|
||||
}
|
||||
|
||||
#endif /* !defined(DEBUG_THREADLOCALS) */
|
||||
|
Reference in New Issue
Block a user