Skip to content

Commit d2ff2c5

Browse files
committed
use out_of_space instead of out_of_space_ref to align return type
1 parent 8d0ef9d commit d2ff2c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/optimizer_symbols.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1685,7 +1685,7 @@ make_bottom(JitOptContext *ctx)
16851685
{
16861686
JitOptSymbol *sym = sym_new(ctx);
16871687
if (sym == NULL) {
1688-
return out_of_space_ref(ctx);
1688+
return out_of_space(ctx);
16891689
}
16901690
sym->tag = JIT_SYM_BOTTOM_TAG;
16911691
return sym;

0 commit comments

Comments
 (0)