[PATCH 08/17] twain_32/tests: Use the available ARRAY_SIZE() macro

Michael Stefaniuc mstefani at winehq.org
Wed May 30 14:15:40 CDT 2018


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

diff --git a/dlls/twain_32/tests/dsm.c b/dlls/twain_32/tests/dsm.c
index ab6e84fd6a..1e9764dccb 100644
--- a/dlls/twain_32/tests/dsm.c
+++ b/dlls/twain_32/tests/dsm.c
@@ -663,7 +663,7 @@ static void test_single_source(TW_IDENTITY *appid, TW_IDENTITY *source)
                 UINT16 *u = (UINT16 *) a->ItemList;
                 trace("%d Capabilities:\n", a->NumItems);
                 for (i = 0; i < a->NumItems; i++)
-                    if (u[i] < sizeof(capabilities) / sizeof(capabilities[0]))
+                    if (u[i] < ARRAY_SIZE(capabilities))
                     {
                         capabilities[u[i]] = 1;
                         trace("  %d: 0x%x\n", i, u[i]);
-- 
2.14.3




More information about the wine-patches mailing list