Fix 64-bit portability warning in XObject::GetNativeObject

This commit is contained in:
salh
2026-04-17 23:21:16 +03:00
parent fa136d2920
commit 4f5b43d66b
+1 -1
View File
@@ -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 {