mirror of https://github.com/python/cpython
gh-116386: Fix format string "%ld" warning in `_xxinterpqueuesmodule` (#116387)
This commit is contained in:
parent
b33980a2e3
commit
40b79efae7
|
@ -758,7 +758,7 @@ _queuerefs_clear(_queueref *head)
|
|||
_queue_kill_and_wait(queue);
|
||||
#ifdef Py_DEBUG
|
||||
if (queue->items.count > 0) {
|
||||
fprintf(stderr, "queue %" PRId64 " still holds %" PRId64 " items\n",
|
||||
fprintf(stderr, "queue %" PRId64 " still holds %zd items\n",
|
||||
qid, queue->items.count);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue