Commit 55c98492 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

windowscodecs/tests: Use the ARRAY_SIZE() macro.

parent 4e9ad7b3
......@@ -1131,7 +1131,7 @@ static void test_color_formats(void)
ok(bps[0] == 8 && bps[1] == 8 && bps[2] == 8 && bps[3] == 0,
"expected bps 8,8,8,0 got %d,%d,%d,%d\n", bps[0], bps[1], bps[2], bps[3]);
for (i = 0; i < sizeof(td)/sizeof(td[0]); i++)
for (i = 0; i < ARRAY_SIZE(td); i++)
{
if (td[i].data)
{
......
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