https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9f428f5522c9a6a4ec8cf1...
commit 9f428f5522c9a6a4ec8cf19f7f0c543c944b9483 Author: Kyle Katarn contact@kcsoftwares.com AuthorDate: Sat Sep 5 16:59:10 2020 +0200 Commit: GitHub noreply@github.com CommitDate: Sat Sep 5 17:59:10 2020 +0300
[NTUSER] Demote ERR to TRACE, also some minor corrections (#3132) --- win32ss/user/ntuser/message.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/win32ss/user/ntuser/message.c b/win32ss/user/ntuser/message.c index ae0c0733ebe..2d6164e7c7c 100644 --- a/win32ss/user/ntuser/message.c +++ b/win32ss/user/ntuser/message.c @@ -800,7 +800,7 @@ static LRESULT handle_internal_message( PWND pWnd, UINT msg, WPARAM wparam, LPAR } case WM_ASYNC_DESTROYWINDOW: { - ERR("WM_ASYNC_DESTROYWINDOW\n"); + TRACE("WM_ASYNC_DESTROYWINDOW\n"); if (pWnd->style & WS_CHILD) return co_UserFreeWindow(pWnd, PsGetCurrentProcessWin32Process(), PsGetCurrentThreadWin32Thread(), TRUE); else @@ -1867,8 +1867,8 @@ co_IntSendMessageWithCallBack( HWND hWnd,
if(!(Message = AllocateUserMessage(FALSE))) { - ERR("MsqSendMessage(): Not enough memory to allocate a message"); - RETURN( FALSE); + ERR("MsqSendMessage(): Not enough memory to allocate a message\n"); + RETURN(FALSE); }
Message->Msg.hwnd = hWnd;