From fb0e107b1863f963e7074786e9a3363a5ac638cd Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 22 Jul 2009 08:52:07 +0200 Subject: [PATCH] shell32: Add a trailing '\n' to a WARN(). --- dlls/shell32/control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/control.c b/dlls/shell32/control.c index e7c7d953389..9b566b65ed2 100644 --- a/dlls/shell32/control.c +++ b/dlls/shell32/control.c @@ -97,7 +97,7 @@ CPlApplet* Control_LoadApplet(HWND hWnd, LPCWSTR cmd, CPanel* panel) sizeof(*applet) + (applet->count - 1) * sizeof(NEWCPLINFOW)); if (!(applet->cmd = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(cmd)+1) * sizeof(WCHAR)))) { - WARN("Cannot allocate memory for applet path"); + WARN("Cannot allocate memory for applet path\n"); goto theError; }