commit | 4c08d554b9009899780a5e003d6bbeb5413906ee | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Mar 10 22:55:18 2000 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Mar 10 22:55:18 2000 +0000 |
tree | 342df952b99b7d4e2ce8e51e8dd65d23744318b6 | |
parent | d57fd91488212f5b891da5caf6bc04a907659cbd [diff] [blame] |
Many changes for Unicode, by Marc-Andre Lemburg.
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 @@ 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; }