Commit 41a1f7f7 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent 54960cd8
......@@ -457,7 +457,7 @@ static void test_packager(void)
ok(hr == S_OK, "Load failed: %08x\n", hr);
if(extended){
len = GetTempPathW(sizeof(filename) / sizeof(*filename), filename);
len = GetTempPathW(ARRAY_SIZE(filename), filename);
lstrcpyW(filename + len, filename3W);
file = CreateFileW(filename, GENERIC_READ, 0, NULL, OPEN_EXISTING,
......
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