Skip to content

Commit d5a2aa3

Browse files
committed
gh-116386: Fix format string "%ld" warning in _xxinterpqueuesmodule
1 parent e205c5c commit d5a2aa3

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
@@ -759,7 +759,7 @@ _queuerefs_clear(_queueref *head)
759759
#ifdef Py_DEBUG
760760
if (queue->items.count > 0) {
761761
fprintf(stderr, "queue %" PRId64 " still holds %" PRId64 " items\n",
762-
qid, queue->items.count);
762+
qid, (int64_t)queue->items.count);
763763
}
764764
#endif
765765
_queue_free(queue);

0 commit comments

Comments
 (0)