Commit 1144f092 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent 707882a6
...@@ -410,7 +410,7 @@ static void test_getroletext(void) ...@@ -410,7 +410,7 @@ static void test_getroletext(void)
memset(buff2W, 0, sizeof(buff2W)); memset(buff2W, 0, sizeof(buff2W));
ret = GetRoleTextW(role, NULL, 0); ret = GetRoleTextW(role, NULL, 0);
GetRoleTextW(role, buff2W, sizeof(buff2W)/sizeof(WCHAR)); GetRoleTextW(role, buff2W, ARRAY_SIZE(buff2W));
ok(ret == lstrlenW(buff2W), ok(ret == lstrlenW(buff2W),
"GetRoleTextW: returned length doesn't match returned buffer for role %d\n", role); "GetRoleTextW: returned length doesn't match returned buffer for role %d\n", role);
} }
......
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