Module: wine Branch: master Commit: 1ec8fa53db86c54d5b023927fdf83a460116d7d7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1ec8fa53db86c54d5b023927fd...
Author: Francois Gouget fgouget@free.fr Date: Sat Apr 23 07:48:48 2016 +0200
ole32: Fix a typo in a TRACE() message.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Huw Davies huw@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/ole32/marshal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ole32/marshal.c b/dlls/ole32/marshal.c index 73b9409..bdde38b 100644 --- a/dlls/ole32/marshal.c +++ b/dlls/ole32/marshal.c @@ -1776,7 +1776,7 @@ HRESULT WINAPI CoMarshalInterface(IStream *pStream, REFIID riid, IUnknown *pUnk, } }
- TRACE("Calling IMarshal::MarshalInterace\n"); + TRACE("Calling IMarshal::MarshalInterface\n"); /* call helper object to do the actual marshaling */ hr = IMarshal_MarshalInterface(pMarshal, pStream, riid, pUnk, dwDestContext, pvDestContext, mshlFlags);