diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2003-12-29 22:15:02 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2003-12-29 22:15:02 +0000 |
commit | 31943bac1db3351118c7f911db99bd567f02a883 (patch) | |
tree | 053244070a0a7f612d637a0547f0d851a2dd024a /byterun/finalise.c | |
parent | dbf40e0b61af6f34d4a2736be1f0562ee5e8a52f (diff) |
depollution suite (PR#1914 et PR#1956); byterun/weak.c: PR#1929 suite
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6041 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/finalise.c')
-rw-r--r-- | byterun/finalise.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/finalise.c b/byterun/finalise.c index 79e1e01fa..659031f97 100644 --- a/byterun/finalise.c +++ b/byterun/finalise.c @@ -84,12 +84,12 @@ void final_do_calls (void) Assert (active <= size); if (active < size){ - gc_message (0x80, "Calling finalisation functions.\n", 0); + caml_gc_message (0x80, "Calling finalisation functions.\n", 0); while (active < size){ f = final_table[active++]; callback (f.fun, f.val); } - gc_message (0x80, "Done calling finalisation functions.\n", 0); + caml_gc_message (0x80, "Done calling finalisation functions.\n", 0); } } |