Skip to content

Commit 39ff3f0

Browse files
committed
Fix narrowing
1 parent 03d35b2 commit 39ff3f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/flowgraph.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2525,7 +2525,7 @@ store_local(uint8_t *instr_flags, ref_stack *refs, int local, ref r)
25252525
}
25262526

25272527
static void
2528-
load_fast_push_block(basicblock ***sp, basicblock *target, int start_depth)
2528+
load_fast_push_block(basicblock ***sp, basicblock *target, Py_ssize_t start_depth)
25292529
{
25302530
assert(target->b_startdepth >= 0 && target->b_startdepth == start_depth);
25312531
if (!target->b_visited) {

0 commit comments

Comments
 (0)