diff options
Diffstat (limited to 'byterun/roots.c')
-rw-r--r-- | byterun/roots.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/roots.c b/byterun/roots.c index 3f66a1cac..31e2f9580 100644 --- a/byterun/roots.c +++ b/byterun/roots.c @@ -58,7 +58,7 @@ void caml_oldify_local_roots (void) caml_oldify_one(*(gr->root), 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); } @@ -85,7 +85,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); } |