Skip to content

Commit 7d90844

Browse files
committed
Fix incorrect conversion specifier
1 parent a7957fa commit 7d90844

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Python/bytecodes.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4937,7 +4937,7 @@ dummy_func(
49374937
if (lltrace >= 2) {
49384938
printf("SIDE EXIT: [UOp ");
49394939
_PyUOpPrint(&next_uop[-1]);
4940-
printf(", exit %u, temp %d, target %d -> %s]\n",
4940+
printf(", exit %ld, temp %d, target %d -> %s]\n",
49414941
exit - current_executor->exits, exit->temperature.value_and_backoff,
49424942
(int)(target - _PyFrame_GetBytecode(frame)),
49434943
_PyOpcode_OpName[target->op.code]);
@@ -5065,7 +5065,7 @@ dummy_func(
50655065
if (lltrace >= 2) {
50665066
printf("DYNAMIC EXIT: [UOp ");
50675067
_PyUOpPrint(&next_uop[-1]);
5068-
printf(", exit %u, temp %d, target %d -> %s]\n",
5068+
printf(", exit %ld, temp %d, target %d -> %s]\n",
50695069
exit - current_executor->exits, exit->temperature.value_and_backoff,
50705070
(int)(target - _PyFrame_GetBytecode(frame)),
50715071
_PyOpcode_OpName[target->op.code]);

Python/executor_cases.c.h

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)