Module: wine Branch: master Commit: b84417ee11b449dff352b2158203c169153f4e82 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b84417ee11b449dff352b21582...
Author: Francois Gouget fgouget@free.fr Date: Thu Jan 4 10:52:22 2007 +0100
itss: Fix spelling of the dwOrigin variables.
---
dlls/itss/protocol.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/itss/protocol.c b/dlls/itss/protocol.c index c278954..51fad3c 100644 --- a/dlls/itss/protocol.c +++ b/dlls/itss/protocol.c @@ -268,10 +268,10 @@ static HRESULT WINAPI ITSProtocol_Read(I }
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; }