From d2aecc041215fa3c5218d1d11cdb52b4f0e75a67 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 22 Sep 2024 16:24:48 +0200 Subject: [BOX32][wrapper] Added some basic 32bits X11 wrapping, fixed 32bits sem_XXX wrapping, and more 32bits wrapped functions --- 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 b4d7cf06..cbf97767 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, ulong 0x%p is not a 32bits value\n", (void*)l); + printf_log(LOG_NONE, "Warning, ulong %p is not a 32bits value\n", (void*)l); return (ulong_t)l; } #else //TEST32 -- cgit 1.4.1