shell32: Add missing '\n' to Wine trace.
This commit is contained in:
parent
fc765b98bf
commit
138e12b3d2
|
@ -217,7 +217,7 @@ static BOOL SHELL_ArgifyW(WCHAR* out, int len, const WCHAR* fmt, const WCHAR* lp
|
||||||
pv = SHLockShared(hmem, 0);
|
pv = SHLockShared(hmem, 0);
|
||||||
chars = sprintfW(buf, wszILPtr, pv);
|
chars = sprintfW(buf, wszILPtr, pv);
|
||||||
if (chars >= sizeof(buf)/sizeof(WCHAR))
|
if (chars >= sizeof(buf)/sizeof(WCHAR))
|
||||||
ERR("pidl format buffer too small!");
|
ERR("pidl format buffer too small!\n");
|
||||||
used += chars;
|
used += chars;
|
||||||
if (used < len)
|
if (used < len)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue