From 9178effd9f837b52107c1943e9736cf2dfc5d40d Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 1 Sep 2024 13:07:47 +0200 Subject: [BOX32] More wrapped function and a few fixes for steamclient.so (still crashing) --- src/include/box32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/box32.h') diff --git a/src/include/box32.h b/src/include/box32.h index 9d5a40ca..9d14b0f7 100644 --- a/src/include/box32.h +++ b/src/include/box32.h @@ -58,7 +58,7 @@ static inline long_t to_long(long l) { } static inline ulong_t to_ulong(unsigned long l) { if(l!=0xffffffffffffffffLL && (l>>32)) - printf_log(LOG_NONE, "Warning, long 0x%p is not a 32bits value\n", (void*)l); + printf_log(LOG_NONE, "Warning, ulong 0x%p is not a 32bits value\n", (void*)l); return (ulong_t)l; } #else //TEST32 -- cgit 1.4.1