Skip to content

Commit 8fc05cb

Browse files
authored
flambda-backend: Fix build of 5 runtime (#2086)
1 parent d4a0b71 commit 8fc05cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/shared_heap.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ static void compact_update_block(header_t* p)
875875
if (tag == Cont_tag) {
876876
value stk = Field(Val_hp(p), 0);
877877
if (Ptr_val(stk)) {
878-
caml_scan_stack(&compact_update_value, 0, NULL, Ptr_val(stk), 0);
878+
caml_scan_stack(&compact_update_value, 0, NULL, Ptr_val(stk), 0, NULL);
879879
}
880880
} else {
881881
uintnat offset = 0;

0 commit comments

Comments
 (0)