summaryrefslogtreecommitdiffstats
path: root/struct.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-26 08:30:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-26 08:30:22 +0000
commit22ce0047e2d128124b8d6b90c54217869412880a (patch)
tree75dd6237c053370c0ba872982d1a9a52753194c7 /struct.c
parenta07b4b1fb0f2e47d755d82f2d6fab5e9f262774c (diff)
downloadruby-22ce0047e2d128124b8d6b90c54217869412880a.tar.gz
ruby-22ce0047e2d128124b8d6b90c54217869412880a.tar.xz
ruby-22ce0047e2d128124b8d6b90c54217869412880a.zip
* error.c (builtin_types), signal.c (siglist), st.c (primes),
struct.c (ref_func), time.c (months): constified. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/struct.c b/struct.c
index f61854fc2..74d20a426 100644
--- a/struct.c
+++ b/struct.c
@@ -127,7 +127,7 @@ static VALUE rb_struct_ref9(VALUE obj) {return RSTRUCT_PTR(obj)[9];}
#define N_REF_FUNC (sizeof(ref_func) / sizeof(ref_func[0]))
-static VALUE (*ref_func[])(VALUE) = {
+static VALUE (*const ref_func[])(VALUE) = {
rb_struct_ref0,
rb_struct_ref1,
rb_struct_ref2,