diff --git a/src/windows-emulator/syscalls.cpp b/src/windows-emulator/syscalls.cpp index 463cda60..5c9877da 100644 --- a/src/windows-emulator/syscalls.cpp +++ b/src/windows-emulator/syscalls.cpp @@ -2591,7 +2591,8 @@ namespace if (h.value.type != handle_types::thread && h.value.type != handle_types::event) { - c.win_emu.logger.print(color::gray, "Unsupported handle type for NtWaitForMultipleObjects!\n"); + c.win_emu.logger.print(color::gray, "Unsupported handle type for NtWaitForMultipleObjects: %d!\n", + h.value.type); return STATUS_NOT_SUPPORTED; } } @@ -2616,7 +2617,8 @@ namespace if (h.value.type != handle_types::thread && h.value.type != handle_types::event) { - c.win_emu.logger.print(color::gray, "Unsupported handle type for NtWaitForSingleObject!\n"); + c.win_emu.logger.print(color::gray, + "Unsupported handle type for NtWaitForSingleObject: %d!\n", h.value.type); return STATUS_NOT_SUPPORTED; }