diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2024-03-07 06:44:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-07 06:44:26 (GMT) |
commit | 40b79efae7f8e1e0d4fd50c13f8b7514203bc6da (patch) | |
tree | 9de1b8fd0c173126b1b52f40d37d80f368d486e9 | |
parent | b33980a2e3f195c63e3aadeeebd8e50eb41ad70c (diff) | |
download | cpython-40b79efae7f8e1e0d4fd50c13f8b7514203bc6da.zip cpython-40b79efae7f8e1e0d4fd50c13f8b7514203bc6da.tar.gz cpython-40b79efae7f8e1e0d4fd50c13f8b7514203bc6da.tar.bz2 |
gh-116386: Fix format string "%ld" warning in `_xxinterpqueuesmodule` (#116387)
-rw-r--r-- | Modules/_xxinterpqueuesmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_xxinterpqueuesmodule.c b/Modules/_xxinterpqueuesmodule.c index 00e49f3..96f6eee 100644 --- a/Modules/_xxinterpqueuesmodule.c +++ b/Modules/_xxinterpqueuesmodule.c @@ -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 |