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

Michael Stefaniuc mstefani at winehq.org
Tue Feb 20 16:57:14 CST 2018


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/ddraw/tests/ddraw4.c | 2 +-
 dlls/ddraw/tests/ddraw7.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ddraw/tests/ddraw4.c b/dlls/ddraw/tests/ddraw4.c
index 02b10b5ccb..550d73a1bd 100644
--- a/dlls/ddraw/tests/ddraw4.c
+++ b/dlls/ddraw/tests/ddraw4.c
@@ -14265,7 +14265,7 @@ static void test_map_synchronisation(void)
     tri_count = ((tri_count + 2 + 3) & ~3) - 2;
     vb_desc.dwNumVertices = tri_count + 2;
 
-    for (i = 0; i < sizeof(tests) / sizeof(*tests); ++i)
+    for (i = 0; i < ARRAY_SIZE(tests); ++i)
     {
         hr = IDirect3D3_CreateVertexBuffer(d3d, &vb_desc, &buffer, 0, NULL);
         ok(SUCCEEDED(hr), "Failed to create vertex buffer, hr %#x.\n", hr);
diff --git a/dlls/ddraw/tests/ddraw7.c b/dlls/ddraw/tests/ddraw7.c
index 43c52aa8b9..3f433a6765 100644
--- a/dlls/ddraw/tests/ddraw7.c
+++ b/dlls/ddraw/tests/ddraw7.c
@@ -13640,7 +13640,7 @@ static void test_map_synchronisation(void)
     tri_count = ((tri_count + 2 + 3) & ~3) - 2;
     vb_desc.dwNumVertices = tri_count + 2;
 
-    for (i = 0; i < sizeof(tests) / sizeof(*tests); ++i)
+    for (i = 0; i < ARRAY_SIZE(tests); ++i)
     {
         hr = IDirect3D7_CreateVertexBuffer(d3d, &vb_desc, &buffer, 0);
         ok(SUCCEEDED(hr), "Failed to create vertex buffer, hr %#x.\n", hr);
-- 
2.14.3




More information about the wine-devel mailing list