Francois Gouget : riched20: Fix a trailing '\n' in a FIXME() call.
Module: wine Branch: master Commit: 7f0797cc7870ad3945d16f1bae833e0fec635d2c URL: http://source.winehq.org/git/wine.git/?a=commit;h=7f0797cc7870ad3945d16f1bae... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Mar 20 09:35:57 2015 +0100 riched20: Fix a trailing '\n' in a FIXME() call. --- dlls/riched20/richole.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/riched20/richole.c b/dlls/riched20/richole.c index 3818cfa..5d662e4 100644 --- a/dlls/riched20/richole.c +++ b/dlls/riched20/richole.c @@ -444,7 +444,7 @@ static HRESULT STDMETHODCALLTYPE IOleInPlaceSite_fnGetWindowContext(IOleInPlaceS LPRECT lprcClipRect, LPOLEINPLACEFRAMEINFO lpFrameInfo) { IOleClientSiteImpl *This = impl_from_IOleInPlaceSite(iface); - FIXME("not implemented: (%p)->(%p %p %p %p %p\n)", This, ppFrame, ppDoc, lprcPosRect, lprcClipRect, lpFrameInfo); + FIXME("not implemented: (%p)->(%p %p %p %p %p)\n", This, ppFrame, ppDoc, lprcPosRect, lprcClipRect, lpFrameInfo); return E_NOTIMPL; }
participants (1)
-
Alexandre Julliard