kernelbase: Output message ID as hex in debug messages.

Signed-off-by: Jeff Smith <whydoubt@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Jeff Smith 2020-06-07 23:29:17 -05:00 committed by Alexandre Julliard
parent 44cc7bef76
commit 0e77260ae9
1 changed files with 2 additions and 2 deletions

View File

@ -3689,7 +3689,7 @@ DWORD WINAPI DECLSPEC_HOTPATCH FormatMessageA( DWORD flags, const void *source,
WCHAR *result, *message = NULL; WCHAR *result, *message = NULL;
NTSTATUS status; NTSTATUS status;
TRACE( "(0x%x,%p,%d,0x%x,%p,%d,%p)\n", flags, source, msgid, langid, buffer, size, args ); TRACE( "(0x%x,%p,%#x,0x%x,%p,%u,%p)\n", flags, source, msgid, langid, buffer, size, args );
if (flags & FORMAT_MESSAGE_ALLOCATE_BUFFER) if (flags & FORMAT_MESSAGE_ALLOCATE_BUFFER)
{ {
@ -3771,7 +3771,7 @@ DWORD WINAPI DECLSPEC_HOTPATCH FormatMessageW( DWORD flags, const void *source,
WCHAR *message = NULL; WCHAR *message = NULL;
NTSTATUS status; NTSTATUS status;
TRACE( "(0x%x,%p,%d,0x%x,%p,%d,%p)\n", flags, source, msgid, langid, buffer, size, args ); TRACE( "(0x%x,%p,%#x,0x%x,%p,%u,%p)\n", flags, source, msgid, langid, buffer, size, args );
if (!buffer) if (!buffer)
{ {