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

shdocvw: Fix the trailing '\n' of a TRACE().

parent 1465b4d2
......@@ -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);
......
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