[PATCH 4/7] d3dx9/tests: Use ARRAY_SIZE in test_D3DXFloat_Array().

Henri Verbeet hverbeet at codeweavers.com
Fri May 5 06:40:31 CDT 2017


Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
---
 dlls/d3dx9_36/tests/math.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/d3dx9_36/tests/math.c b/dlls/d3dx9_36/tests/math.c
index 258e959..2cf22a4 100644
--- a/dlls/d3dx9_36/tests/math.c
+++ b/dlls/d3dx9_36/tests/math.c
@@ -2513,7 +2513,7 @@ static void test_D3DXFloat_Array(void)
     out = D3DXFloat16To32Array(&single.f, &half, 0);
     ok(out == &single.f, "Got %p, expected %p.\n", out, &single.f);
 
-    for (i = 0; i < sizeof(testdata)/sizeof(testdata[0]); i++)
+    for (i = 0; i < ARRAY_SIZE(testdata); ++i)
     {
         out = D3DXFloat32To16Array(&half, &testdata[i].single_in.f, 1);
         ok(out == &half, "Got %p, expected %p.\n", out, &half);
-- 
2.1.4




More information about the wine-patches mailing list