mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
Use WARN() instead of TRACE() in DebugOutputA().
This commit is contained in:
parent
b8171e8baf
commit
cd1323765c
@ -129,7 +129,7 @@ void WINAPI OutputDebugStringA( LPCSTR str )
|
||||
req->unicode = 0;
|
||||
req->length = strlen(str) + 1;
|
||||
server_call_noerr( REQ_OUTPUT_DEBUG_STRING );
|
||||
TRACE("%s\n", str);
|
||||
WARN("%s\n", str);
|
||||
}
|
||||
|
||||
|
||||
@ -143,7 +143,7 @@ void WINAPI OutputDebugStringW( LPCWSTR str )
|
||||
req->unicode = 1;
|
||||
req->length = (lstrlenW(str) + 1) * sizeof(WCHAR);
|
||||
server_call_noerr( REQ_OUTPUT_DEBUG_STRING );
|
||||
TRACE("%s\n", debugstr_w(str));
|
||||
WARN("%s\n", debugstr_w(str));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user