GetModuleHandle: terminate debug message with newline git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@5871 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-libraries/winstorecompat/src/GetModuleHandle.c b/mingw-w64-libraries/winstorecompat/src/GetModuleHandle.c index 05b8b0b..68435f4 100644 --- a/mingw-w64-libraries/winstorecompat/src/GetModuleHandle.c +++ b/mingw-w64-libraries/winstorecompat/src/GetModuleHandle.c
@@ -36,7 +36,7 @@ { wchar_t msg[512]; - _snwprintf(msg, 511, L"GetModuleHandleA (%S) call suppressed", lpModuleName); + _snwprintf(msg, 511, L"GetModuleHandleA (%S) call suppressed\n", lpModuleName); msg[511] = '\0'; OutputDebugStringW(msg); @@ -48,7 +48,7 @@ { wchar_t msg[512]; - _snwprintf(msg, 511, L"GetModuleHandleW (%ws) call suppressed", lpModuleName); + _snwprintf(msg, 511, L"GetModuleHandleW (%ws) call suppressed\n", lpModuleName); msg[511] = '\0'; OutputDebugStringW(msg);