mirror of
https://github.com/sal063/AC6_recomp
synced 2026-08-21 23:00:53 -04:00
Fix 64-bit portability warning in XObject::GetNativeObject
This commit is contained in:
+1
-1
@@ -327,7 +327,7 @@ object_ref<XObject> XObject::GetNativeObject(KernelState* kernel_state, void* na
|
||||
// instead of leaving the kernel call with a dead mapping forever.
|
||||
REXSYS_WARN("XObject::GetNativeObject stale mapping native_ptr={:08X} handle={:08X} "
|
||||
"header_type={} requested_type={}",
|
||||
reinterpret_cast<uint32_t>(native_ptr), handle, uint32_t(header->type), as_type);
|
||||
reinterpret_cast<uintptr_t>(native_ptr), handle, uint32_t(header->type), as_type);
|
||||
header->wait_list_flink = 0;
|
||||
header->wait_list_blink = 0;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user