summaryrefslogtreecommitdiffstats
path: root/asmrun/roots.c
diff options
context:
space:
mode:
Diffstat (limited to 'asmrun/roots.c')
-rw-r--r--asmrun/roots.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/asmrun/roots.c b/asmrun/roots.c
index 1ff7a4ab3..76d85a0ad 100644
--- a/asmrun/roots.c
+++ b/asmrun/roots.c
@@ -188,7 +188,7 @@ void caml_oldify_local_roots (void)
Oldify (gr->root);
}
/* Finalised values */
- final_do_young_roots (&caml_oldify_one);
+ caml_final_do_young_roots (&caml_oldify_one);
/* Hook */
if (caml_scan_roots_hook != NULL) (*caml_scan_roots_hook)(caml_oldify_one);
}
@@ -221,7 +221,7 @@ void caml_do_roots (scanning_action f)
f(*(gr->root), gr->root);
}
/* Finalised values */
- final_do_strong_roots (f);
+ caml_final_do_strong_roots (f);
/* Hook */
if (caml_scan_roots_hook != NULL) (*caml_scan_roots_hook)(f);
}