From: Nikita Sobolev Date: Thu, 7 Mar 2024 06:44:26 +0000 (+0300) Subject: gh-116386: Fix format string "%ld" warning in `_xxinterpqueuesmodule` (#116387) X-Git-Tag: v3.13.0a5~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40b79efae7f8e1e0d4fd50c13f8b7514203bc6da;p=thirdparty%2FPython%2Fcpython.git gh-116386: Fix format string "%ld" warning in `_xxinterpqueuesmodule` (#116387) --- diff --git a/Modules/_xxinterpqueuesmodule.c b/Modules/_xxinterpqueuesmodule.c index 00e49f385ee6..96f6eeeea94b 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