Commit 5587160c authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

ieframe: Use ARRAY_SIZE for GetLongPathNameW.

parent da3a53ab
......@@ -3973,7 +3973,7 @@ static void test_FileProtocol(void)
}
CloseHandle(file);
GetLongPathNameW(file_path, file_path, sizeof(file_path));
GetLongPathNameW(file_path, file_path, ARRAY_SIZE(file_path));
lstrcatW(file_url, file_path);
test_ConnectionPoint(webbrowser, TRUE);
......
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