We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc9d85 commit dab85e0Copy full SHA for dab85e0
Modules/_xxinterpqueuesmodule.c
@@ -750,15 +750,15 @@ _queuerefs_clear(_queueref *head)
750
751
#ifdef Py_DEBUG
752
int64_t qid = ref->qid;
753
- fprintf(stderr, "queue %ld still exists\n", qid);
+ fprintf(stderr, "queue %" PRId64 " still exists\n", qid);
754
#endif
755
_queue *queue = ref->queue;
756
GLOBAL_FREE(ref);
757
758
_queue_kill_and_wait(queue);
759
760
if (queue->items.count > 0) {
761
- fprintf(stderr, "queue %ld still holds %ld items\n",
+ fprintf(stderr, "queue %" PRId64 " still holds %" PRId64 " items\n",
762
qid, queue->items.count);
763
}
764
0 commit comments