From b73f68cc8ab03753abbfc457b6e492e0d6d436e0 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 21 Mar 2019 22:59:58 -0400 Subject: [PATCH] Qualify static function --- runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.c b/runtime.c index 19179507..77eb9a0e 100644 --- a/runtime.c +++ b/runtime.c @@ -5365,7 +5365,7 @@ static char *gc_fixup_moved_obj(gc_thread_data * thd, int *alloci, char *obj, return (char *)hp; } -char *gc_move(char *obj, gc_thread_data * thd, int *alloci, int *heap_grown) +static char *gc_move(char *obj, gc_thread_data * thd, int *alloci, int *heap_grown) { gc_heap_root *heap = thd->heap; if (!is_object_type(obj))