diff options
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r-- | Objects/intobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c index 2e8939e..d182b30 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -957,8 +957,8 @@ PyInt_Fini() i++, p++) { if (PyInt_Check(p) && p->ob_refcnt != 0) fprintf(stderr, - "# <int at %lx, refcnt=%d, val=%ld>\n", - (long)p, p->ob_refcnt, p->ob_ival); + "# <int at %p, refcnt=%d, val=%ld>\n", + p, p->ob_refcnt, p->ob_ival); } list = list->next; } |