summaryrefslogtreecommitdiffstats
path: root/Objects/intobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-10 22:55:18 (GMT)
committerGuido van Rossum <guido@python.org>2000-03-10 22:55:18 (GMT)
commit4c08d554b9009899780a5e003d6bbeb5413906ee (patch)
tree342df952b99b7d4e2ce8e51e8dd65d23744318b6 /Objects/intobject.c
parentd57fd91488212f5b891da5caf6bc04a907659cbd (diff)
downloadcpython-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.c2
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;
}