From: Eric Pouech eric.pouech@gmail.com
--- dlls/ntdll/unix/process.c | 2 +- dlls/ntdll/unix/thread.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ntdll/unix/process.c b/dlls/ntdll/unix/process.c index 6f1e65a0e6a..a8611beb781 100644 --- a/dlls/ntdll/unix/process.c +++ b/dlls/ntdll/unix/process.c @@ -996,7 +996,7 @@ NTSTATUS WINAPI NtTerminateProcess( HANDLE handle, LONG exit_code ) unsigned int ret; BOOL self;
- MESSAGE("%04x:%s %p %u\n", GetCurrentThreadId(), __FUNCTION__, handle, exit_code); + MESSAGE("%04x:%s %p %u\n", GetCurrentThreadId(), __FUNCTION__, handle, (unsigned)exit_code); SERVER_START_REQ( terminate_process ) { req->handle = wine_server_obj_handle( handle ); diff --git a/dlls/ntdll/unix/thread.c b/dlls/ntdll/unix/thread.c index 9aa6cd6f25d..59553f97503 100644 --- a/dlls/ntdll/unix/thread.c +++ b/dlls/ntdll/unix/thread.c @@ -1690,7 +1690,7 @@ NTSTATUS WINAPI NtTerminateThread( HANDLE handle, LONG exit_code ) unsigned int ret; BOOL self;
- MESSAGE("%04x:%s %p %u\n", GetCurrentThreadId(), __FUNCTION__, handle, exit_code); + MESSAGE("%04x:%s %p %u\n", GetCurrentThreadId(), __FUNCTION__, handle, (unsigned)exit_code); SERVER_START_REQ( terminate_thread ) { req->handle = wine_server_obj_handle( handle );