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

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

parent 243e8b26
......@@ -163,7 +163,7 @@ static void test_evr_filter_aggregations(void)
};
int i;
for (i = 0; i < sizeof(iids) / sizeof(iids[0]); i++)
for (i = 0; i < ARRAY_SIZE(iids); i++)
{
test_aggregation(CLSID_EnhancedVideoRenderer, *iids[i], "filter", 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