summaryrefslogtreecommitdiff
path: root/runtime/minor_gc.c
diff options
context:
space:
mode:
authorJeremy Yallop <yallop@gmail.com>2021-12-10 23:14:36 +0000
committerJeremy Yallop <yallop@gmail.com>2021-12-10 23:54:21 +0000
commita49fb1e4334aa40ee14849f516838facd4e5cf6b (patch)
tree65f263d7e90627a78e1d022dbd7ed95ca70bd058 /runtime/minor_gc.c
parentf48d866152433d39a8aafcd944b533e38ad88624 (diff)
downloadocaml-a49fb1e4334aa40ee14849f516838facd4e5cf6b.tar.gz
Make reset_minor_tables static
Diffstat (limited to 'runtime/minor_gc.c')
-rw-r--r--runtime/minor_gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/minor_gc.c b/runtime/minor_gc.c
index bb9a7b814a..af21324465 100644
--- a/runtime/minor_gc.c
+++ b/runtime/minor_gc.c
@@ -94,7 +94,7 @@ struct caml_minor_tables* caml_alloc_minor_tables()
return r;
}
-void reset_minor_tables(struct caml_minor_tables* r)
+static void reset_minor_tables(struct caml_minor_tables* r)
{
reset_table((struct generic_table *)&r->major_ref);
reset_table((struct generic_table *)&r->ephe_ref);