Commit 52c0e335 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

urlmon: Fix function name in the warning message.

parent 76998f82
......@@ -498,7 +498,7 @@ HRESULT protocol_read(Protocol *protocol, void *buf, ULONG size, ULONG *read_ret
HRESULT protocol_lock_request(Protocol *protocol)
{
if (!InternetLockRequestFile(protocol->request, &protocol->lock))
WARN("InternetLockRequest failed: %d\n", GetLastError());
WARN("InternetLockRequestFile failed: %d\n", GetLastError());
return S_OK;
}
......@@ -509,7 +509,7 @@ HRESULT protocol_unlock_request(Protocol *protocol)
return S_OK;
if(!InternetUnlockRequestFile(protocol->lock))
WARN("InternetUnlockRequest failed: %d\n", GetLastError());
WARN("InternetUnlockRequestFile failed: %d\n", GetLastError());
protocol->lock = 0;
return S_OK;
......
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