diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-09-22 16:24:48 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-09-22 16:24:48 +0200 |
| commit | d2aecc041215fa3c5218d1d11cdb52b4f0e75a67 (patch) | |
| tree | cae1d496ce0e35e0137aa7cf124f3174153a97ea /src/include/box32.h | |
| parent | 710d537f3949d55944bc96e73927c9d30bdf13c2 (diff) | |
| download | box64-d2aecc041215fa3c5218d1d11cdb52b4f0e75a67.tar.gz box64-d2aecc041215fa3c5218d1d11cdb52b4f0e75a67.zip | |
[BOX32][wrapper] Added some basic 32bits X11 wrapping, fixed 32bits sem_XXX wrapping, and more 32bits wrapped functions
Diffstat (limited to 'src/include/box32.h')
| -rw-r--r-- | src/include/box32.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |