about summary refs log tree commit diff stats
path: root/src/include/box32.h
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-09-01 13:07:47 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-09-01 13:07:47 +0200
commit9178effd9f837b52107c1943e9736cf2dfc5d40d (patch)
tree10794e2361183a359ab92d31c081a31e299c125c /src/include/box32.h
parentcce9e280ce2ab54eeba48729c51a88e2d2c5e770 (diff)
downloadbox64-9178effd9f837b52107c1943e9736cf2dfc5d40d.tar.gz
box64-9178effd9f837b52107c1943e9736cf2dfc5d40d.zip
[BOX32] More wrapped function and a few fixes for steamclient.so (still crashing)
Diffstat (limited to 'src/include/box32.h')
-rw-r--r--src/include/box32.h2
1 files changed, 1 insertions, 1 deletions
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