Francois Gouget : shdocvw: Fix the trailing '\n' of a TRACE().
Module: wine Branch: master Commit: a4c0b0ddf224e527f3c7d9d992c4b60acc5de4a3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a4c0b0ddf224e527f3c7d9d992... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Dec 3 15:01:24 2010 +0100 shdocvw: Fix the trailing '\n' of a TRACE(). --- dlls/shdocvw/intshcut.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/shdocvw/intshcut.c b/dlls/shdocvw/intshcut.c index 8f55a20..72bceae 100644 --- a/dlls/shdocvw/intshcut.c +++ b/dlls/shdocvw/intshcut.c @@ -750,7 +750,7 @@ void WINAPI OpenURL(HWND hWnd, HINSTANCE hInst, LPCSTR lpcstrUrl, int nShowCmd) ici.hwndParent = hWnd; if FAILED(UniformResourceLocatorW_InvokeCommand(&shortcut->uniformResourceLocatorW, (PURLINVOKECOMMANDINFOW) &ici)) - TRACE("failed to open URL: %s\n.",debugstr_a(lpcstrUrl)); + TRACE("failed to open URL: %s\n", debugstr_a(lpcstrUrl)); } heap_free(shortcut);
participants (1)
-
Alexandre Julliard