From 40b79efae7f8e1e0d4fd50c13f8b7514203bc6da Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Thu, 7 Mar 2024 09:44:26 +0300 Subject: [PATCH] gh-116386: Fix format string "%ld" warning in `_xxinterpqueuesmodule` (#116387) --- Modules/_xxinterpqueuesmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_xxinterpqueuesmodule.c b/Modules/_xxinterpqueuesmodule.c index 00e49f385ee..96f6eeeea94 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