Commit c9f65211 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

twain_32/tests: Use the available ARRAY_SIZE() macro.

parent 840d1e15
......@@ -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]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment