summaryrefslogtreecommitdiff
path: root/variable.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-18 09:44:52 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-18 09:44:52 +0000
commit9e746a3518d5a9af3aca1a00e73ab555fa73ebe3 (patch)
tree30117144093ccd2fd5189cbd821ea4b7425f437e /variable.c
parent8fca7e003a0f77e7fd1713e9fb36503c0750e6d7 (diff)
rb_global_tbl marked as static
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/variable.c b/variable.c
index 1923f28f52..3e37bc2f72 100644
--- a/variable.c
+++ b/variable.c
@@ -22,7 +22,7 @@
#include "id_table.h"
#include "debug_counter.h"
-struct rb_id_table *rb_global_tbl;
+static struct rb_id_table *rb_global_tbl;
static ID autoload, classpath, tmp_classpath, classid;
static void check_before_mod_set(VALUE, ID, VALUE, const char *);