gh-116386: Fix format string "%ld" warning in `_xxinterpqueuesmodule` (#116387)

This commit is contained in:
Nikita Sobolev 2024-03-07 09:44:26 +03:00 committed by GitHub
parent b33980a2e3
commit 40b79efae7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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