From d803c452346a2bec2b34e2cd0502ff34f21663f3 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 4 Sep 2008 17:58:53 +0000 Subject: * vm.c (thread_recycle_stack_slot, thread_recycle_stack_count): make it static. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vm.c') diff --git a/vm.c b/vm.c index 466afe7c7b..b39db29de9 100644 --- a/vm.c +++ b/vm.c @@ -1431,8 +1431,8 @@ vm_init2(rb_vm_t *vm) #if USE_THREAD_DATA_RECYCLE #define RECYCLE_MAX 64 -VALUE *thread_recycle_stack_slot[RECYCLE_MAX]; -int thread_recycle_stack_count = 0; +static VALUE *thread_recycle_stack_slot[RECYCLE_MAX]; +static int thread_recycle_stack_count = 0; static VALUE * thread_recycle_stack(int size) -- cgit v1.2.3