Module: wine Branch: master Commit: 11caaa1b45f9968e48788525038a141bf3e185ce URL: https://source.winehq.org/git/wine.git/?a=commit;h=11caaa1b45f9968e487885250...
Author: Michael Stefaniuc mstefani@winehq.org Date: Thu Mar 29 17:14:16 2018 +0200
comctl32/tests: Use the available ARRAY_SIZE() macro.
Signed-off-by: Michael Stefaniuc mstefani@winehq.org Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/comctl32/tests/button.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/comctl32/tests/button.c b/dlls/comctl32/tests/button.c index 56547c6..4c07f0a 100644 --- a/dlls/comctl32/tests/button.c +++ b/dlls/comctl32/tests/button.c @@ -549,7 +549,7 @@ static void test_button_messages(void) hfont2 = CreateFontIndirectA(&logfont); ok(hfont2 != NULL, "Failed to create Tahoma font\n");
- for (i = 0; i < sizeof(button)/sizeof(button[0]); i++) + for (i = 0; i < ARRAY_SIZE(button); i++) { HFONT prevfont, hfont; MSG msg;