Skip to content

Commit b4dd4bf

Browse files
authored
Fix build of 5 runtime (#2086)
1 parent d71173d commit b4dd4bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocaml/runtime/shared_heap.c

Lines changed: 1 addition & 1 deletion
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)