Skip to content

Commit 40b79ef

Browse files
authored
gh-116386: Fix format string "%ld" warning in _xxinterpqueuesmodule (#116387)
1 parent b33980a commit 40b79ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_xxinterpqueuesmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ _queuerefs_clear(_queueref *head)
758758
_queue_kill_and_wait(queue);
759759
#ifdef Py_DEBUG
760760
if (queue->items.count > 0) {
761-
fprintf(stderr, "queue %" PRId64 " still holds %" PRId64 " items\n",
761+
fprintf(stderr, "queue %" PRId64 " still holds %zd items\n",
762762
qid, queue->items.count);
763763
}
764764
#endif

0 commit comments

Comments
 (0)