mirror of
https://github.com/python/cpython.git
synced 2025-11-13 15:40:05 +00:00
gh-116386: Fix format string "%ld" warning in _xxinterpqueuesmodule (#116387)
This commit is contained in:
parent
b33980a2e3
commit
40b79efae7
1 changed files with 1 additions and 1 deletions
|
|
@ -758,7 +758,7 @@ _queuerefs_clear(_queueref *head)
|
||||||
_queue_kill_and_wait(queue);
|
_queue_kill_and_wait(queue);
|
||||||
#ifdef Py_DEBUG
|
#ifdef Py_DEBUG
|
||||||
if (queue->items.count > 0) {
|
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);
|
qid, queue->items.count);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue