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

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


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

diff --git a/dlls/msvfw32/tests/drawdib.c b/dlls/msvfw32/tests/drawdib.c
index 0a59d82621..92e60df264 100644
--- a/dlls/msvfw32/tests/drawdib.c
+++ b/dlls/msvfw32/tests/drawdib.c
@@ -138,7 +138,7 @@ static void test_DrawDib_sizeimage(void)
     hdd = DrawDibOpen();
     ok(hdd != NULL, "DrawDibOpen failed\n");
 
-    for (i = 0; i < sizeof(test_data)/sizeof(test_data[0]); i++) {
+    for (i = 0; i < ARRAY_SIZE(test_data); i++) {
         char *hash;
         memset(dst_bits, 0xff, dst_dib_size);
         init_bmi(&src_info, test_data[i].width, test_data[i].height, test_data[i].size);
-- 
2.14.4




More information about the wine-devel mailing list