Commit 388ff35a authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

urlmon/tests: Clarify ok() condition (PVS-Studio).

parent beb72c91
......@@ -2927,7 +2927,7 @@ static void test_protocol_terminate(IInternetProtocol *protocol)
ok(hres == S_OK, "LockRequest failed: %08x\n", hres);
hres = IInternetProtocol_Read(protocol, buf, 1, &cb);
ok(hres == test_abort ? S_OK : S_FALSE, "Read failed: %08x\n", hres);
ok(hres == (test_abort ? S_OK : S_FALSE), "Read failed: %08x\n", hres);
hres = IInternetProtocol_Terminate(protocol, 0);
ok(hres == S_OK, "Terminate failed: %08x\n", hres);
......
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