diff options
author | Guido van Rossum <guido@python.org> | 2000-03-10 22:55:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-10 22:55:18 (GMT) |
commit | 4c08d554b9009899780a5e003d6bbeb5413906ee (patch) | |
tree | 342df952b99b7d4e2ce8e51e8dd65d23744318b6 /Objects/intobject.c | |
parent | d57fd91488212f5b891da5caf6bc04a907659cbd (diff) | |
download | cpython-4c08d554b9009899780a5e003d6bbeb5413906ee.zip cpython-4c08d554b9009899780a5e003d6bbeb5413906ee.tar.gz cpython-4c08d554b9009899780a5e003d6bbeb5413906ee.tar.bz2 |
Many changes for Unicode, by Marc-Andre Lemburg.
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r-- | Objects/intobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c index 4f408cf..59c84ad 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -942,7 +942,7 @@ PyInt_Fini() if (PyInt_Check(p) && p->ob_refcnt != 0) fprintf(stderr, "# <int at %lx, refcnt=%d, val=%ld>\n", - p, p->ob_refcnt, p->ob_ival); + (long)p, p->ob_refcnt, p->ob_ival); } list = list->next; } |