From e148db70ea663dae4e9f5bc42185ba94d2d82ee3 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Mon, 8 Jul 2024 09:06:45 -0400 Subject: [PATCH] Make rb_gc_impl_verify_internal_consistency static The function is not used outside of this file. --- gc_impl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gc_impl.c b/gc_impl.c index 84e0b5df8d..4df8235181 100644 --- a/gc_impl.c +++ b/gc_impl.c @@ -5427,7 +5427,7 @@ gc_verify_internal_consistency_(rb_objspace_t *objspace) gc_report(5, objspace, "gc_verify_internal_consistency: OK\n"); } -void +static void rb_gc_impl_verify_internal_consistency(void *objspace_ptr) { rb_objspace_t *objspace = objspace_ptr;