From 4f5b43d66b8545c892d11f3f075a8a117d195826 Mon Sep 17 00:00:00 2001 From: salh Date: Fri, 17 Apr 2026 23:21:16 +0300 Subject: [PATCH] Fix 64-bit portability warning in XObject::GetNativeObject --- thirdparty/rexglue-sdk/src/system/xobject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdparty/rexglue-sdk/src/system/xobject.cpp b/thirdparty/rexglue-sdk/src/system/xobject.cpp index b3e7cb8f..d72b4558 100644 --- a/thirdparty/rexglue-sdk/src/system/xobject.cpp +++ b/thirdparty/rexglue-sdk/src/system/xobject.cpp @@ -327,7 +327,7 @@ object_ref 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(native_ptr), handle, uint32_t(header->type), as_type); + reinterpret_cast(native_ptr), handle, uint32_t(header->type), as_type); header->wait_list_flink = 0; header->wait_list_blink = 0; } else {