[PATCH] msvcr110/tests: Use the available ARRAY_SIZE() macro

Michael Stefaniuc mstefani at winehq.org
Tue Jun 5 17:38:34 CDT 2018


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/msvcr110/tests/msvcr110.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msvcr110/tests/msvcr110.c b/dlls/msvcr110/tests/msvcr110.c
index 3aa394d981..c0a182f546 100644
--- a/dlls/msvcr110/tests/msvcr110.c
+++ b/dlls/msvcr110/tests/msvcr110.c
@@ -61,7 +61,7 @@ static void test_setlocale(void)
         "uz-Latn-uz",
     };
 
-    for(i=0; i<sizeof(names)/sizeof(*names); i++) {
+    for(i=0; i<ARRAY_SIZE(names); i++) {
         ret = p_setlocale(LC_ALL, names[i]);
         ok(ret != NULL, "expected success, but got NULL\n");
         ok(!strcmp(ret, names[i]), "expected %s, got %s\n", names[i], ret);
-- 
2.14.4




More information about the wine-devel mailing list