Commit a8007f0d authored by Alexandre Julliard's avatar Alexandre Julliard

urlmon: Avoid sizeof in traces.

parent 13ab99b4
......@@ -793,7 +793,7 @@ static void test_SecurityManager(void)
ok(hres == S_OK, "GetSecurityId failed: %08x, expected S_OK\n", hres);
ok(size == sizeof(secid10) ||
size == sizeof(secid10_2), /* win2k3 */
"size=%d, expected %d or %d\n", size, sizeof(secid10), sizeof(secid10_2));
"size=%d\n", size);
ok(!memcmp(buf, secid10, size) ||
!memcmp(buf, secid10_2, size), /* win2k3 */
"wrong secid\n");
......
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