Fix a bunch of warnings.

This commit is contained in:
Skyth
2024-10-27 18:48:09 +03:00
parent 882f371de4
commit 24d257d421
10 changed files with 30 additions and 23 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ SWA_API uint32_t XCreateFileA(
nullptr);
GuestThread::SetLastError(GetLastError());
printf("CreateFileA(%s, %x, %x, %x, %x, %x): %x\n", lpFileName, dwDesiredAccess, dwShareMode, lpSecurityAttributes, dwCreationDisposition, dwFlagsAndAttributes, handle);
printf("CreateFileA(%s, %lx, %lx, %p, %lx, %lx): %x\n", lpFileName, dwDesiredAccess, dwShareMode, lpSecurityAttributes, dwCreationDisposition, dwFlagsAndAttributes, handle);
return handle;
}