From 38587126f1b949708d045250a41dfcba8b26fe53 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Fri, 5 May 2017 13:40:31 +0200 Subject: [PATCH] d3dx9/tests: Use ARRAY_SIZE in test_D3DXFloat_Array(). Signed-off-by: Henri Verbeet Signed-off-by: Matteo Bruni Signed-off-by: Alexandre Julliard --- 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 258e9599585..2cf22a4ae1b 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);