shell32: Add a trailing '\n' to a WARN().

This commit is contained in:
Francois Gouget 2009-07-22 08:52:07 +02:00 committed by Alexandre Julliard
parent af0f00b671
commit fb0e107b18

View file

@ -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;
}