mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
lib/test-kstrtox.c: use ARRAY_SIZE instead of sizeof/sizeof[0]
Use kernel.h definition. Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
142cda5dbc
commit
129965a916
@ -3,7 +3,7 @@
|
||||
#include <linux/module.h>
|
||||
|
||||
#define for_each_test(i, test) \
|
||||
for (i = 0; i < sizeof(test) / sizeof(test[0]); i++)
|
||||
for (i = 0; i < ARRAY_SIZE(test); i++)
|
||||
|
||||
struct test_fail {
|
||||
const char *str;
|
||||
|
Loading…
Reference in New Issue
Block a user