diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-11-05 00:05:25 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-11-05 00:05:25 (GMT) |
commit | b5d8204f0f07106319f8316295d2e7693d0dc25b (patch) | |
tree | 5859ced8dfc0fb3387ab018c8db7d880e5b3575e /Modules | |
parent | 08eeadac277982f3e4a501a976e035be6c0ef83c (diff) | |
download | cpython-b5d8204f0f07106319f8316295d2e7693d0dc25b.zip cpython-b5d8204f0f07106319f8316295d2e7693d0dc25b.tar.gz cpython-b5d8204f0f07106319f8316295d2e7693d0dc25b.tar.bz2 |
Issue #10279: fix test_gc under Win64.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/gcmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index 3f96c42..432efb3 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -1370,10 +1370,10 @@ _PyGC_Fini(void) && garbage != NULL && PyList_GET_SIZE(garbage) > 0) { char *message; if (debug & DEBUG_UNCOLLECTABLE) - message = "gc: %" PY_FORMAT_SIZE_T "d uncollectable objects at " \ + message = "gc: %zd uncollectable objects at " \ "shutdown"; else - message = "gc: %" PY_FORMAT_SIZE_T "d uncollectable objects at " \ + message = "gc: %zd uncollectable objects at " \ "shutdown; use gc.set_debug(gc.DEBUG_UNCOLLECTABLE) to list them"; if (PyErr_WarnFormat(PyExc_ResourceWarning, 0, message, PyList_GET_SIZE(garbage)) < 0) |