Issue 780407: cast from pointer to integer of different size (original) (raw)
this warning (gcc-3.2 or gcc-3.3) was introduced betwen 20030321 and 20030505, when compiling on 64bit targets
gcc -c -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -I. -I../Include -DPy_BUILD_CORE -o Parser/grammar.o ../Parser/grammar.c ../Parser/grammar.c: In function `_Py_addlabel': ../Parser/grammar.c:107: warning: cast from pointer to integer of different size
printf("Label @ %08x, %d: %s\n",
(unsigned)ll, ...
this should be casted to an unsigned long, and %lx format.