summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgibbed <rick@gibbed.us>2018-11-26 09:04:10 -0600
committergibbed <rick@gibbed.us>2018-11-26 09:04:10 -0600
commit5b2b2a3cc12ed9a87e40d4d0b8545d049775ef1d (patch)
treeaac74fb76bcc4fc350607b7452ec2a9dc9c056c1
parent03d6de997c05e916c3aecb45f811ad4355d97a70 (diff)
[Kernel] Fix logging of app for XMsgInProcessCall/XMsgSystemProcessCall/XMsgStartIORequest/XMsgStartIORequestEx.
-rw-r--r--src/xenia/kernel/xam/xam_msg.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xenia/kernel/xam/xam_msg.cc b/src/xenia/kernel/xam/xam_msg.cc
index 3dec932a2..07d0be6c7 100644
--- a/src/xenia/kernel/xam/xam_msg.cc
+++ b/src/xenia/kernel/xam/xam_msg.cc
@@ -23,7 +23,7 @@ dword_result_t XMsgInProcessCall(dword_t app, dword_t message, dword_t arg1,
auto result = kernel_state()->app_manager()->DispatchMessageSync(app, message,
arg1, arg2);
if (result == X_ERROR_NOT_FOUND) {
- XELOGE("XMsgInProcessCall: app %.8X undefined", app);
+ XELOGE("XMsgInProcessCall: app %.8X undefined", (uint32_t)app);
}
return result;
}
@@ -34,7 +34,7 @@ dword_result_t XMsgSystemProcessCall(dword_t app, dword_t message,
auto result = kernel_state()->app_manager()->DispatchMessageAsync(
app, message, buffer, buffer_length);
if (result == X_ERROR_NOT_FOUND) {
- XELOGE("XMsgSystemProcessCall: app %.8X undefined", app);
+ XELOGE("XMsgSystemProcessCall: app %.8X undefined", (uint32_t)app);
}
return result;
}
@@ -46,7 +46,7 @@ dword_result_t XMsgStartIORequest(dword_t app, dword_t message,
auto result = kernel_state()->app_manager()->DispatchMessageAsync(
app, message, buffer, buffer_length);
if (result == X_ERROR_NOT_FOUND) {
- XELOGE("XMsgStartIORequest: app %.8X undefined", app);
+ XELOGE("XMsgStartIORequest: app %.8X undefined", (uint32_t)app);
}
if (overlapped_ptr) {
kernel_state()->CompleteOverlappedImmediate(overlapped_ptr, result);
@@ -63,7 +63,7 @@ dword_result_t XMsgStartIORequestEx(dword_t app, dword_t message,
auto result = kernel_state()->app_manager()->DispatchMessageAsync(
app, message, buffer, buffer_length);
if (result == X_ERROR_NOT_FOUND) {
- XELOGE("XMsgStartIORequestEx: app %.8X undefined", app);
+ XELOGE("XMsgStartIORequestEx: app %.8X undefined", (uint32_t)app);
}
if (overlapped_ptr) {
kernel_state()->CompleteOverlappedImmediate(overlapped_ptr, result);