You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
intptr_t is an integer that is at least as big as the largest pointer. So, the %d is technically fine on i386 GCC (sizeof(intptr_t) == sizeof(int)), but should be %lld on x86_64 GCC (sizeof(intptr_t) == sizeof(int)). Really, we probably should be using the PRIdPTR macro from inttypes.h to be portable, so this is definitely a bug.
The text was updated successfully, but these errors were encountered: