Commit b84417ee authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

itss: Fix spelling of the dwOrigin variables.

parent c3ddf0a1
......@@ -268,10 +268,10 @@ static HRESULT WINAPI ITSProtocol_Read(IInternetProtocol *iface, void *pv,
}
static HRESULT WINAPI ITSProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER dlibMove,
DWORD dwOrgin, ULARGE_INTEGER *plibNewPosition)
DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition)
{
ITSProtocol *This = PROTOCOL_THIS(iface);
FIXME("(%p)->(%d %d %p)\n", This, dlibMove.u.LowPart, dwOrgin, plibNewPosition);
FIXME("(%p)->(%d %d %p)\n", This, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
return E_NOTIMPL;
}
......
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