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

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

parent af0f00b6
......@@ -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;
}
......
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