diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-26 08:30:22 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-26 08:30:22 +0000 |
commit | e615e3ce302e92c868b2f7b5a71fa628186497ec (patch) | |
tree | 75dd6237c053370c0ba872982d1a9a52753194c7 /st.c | |
parent | 61234dab9c43eb409ae85a4652ed50b9595b9cf5 (diff) | |
download | ruby-e615e3ce302e92c868b2f7b5a71fa628186497ec.tar.gz |
* error.c (builtin_types), signal.c (siglist), st.c (primes),
struct.c (ref_func), time.c (months): constified.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -82,7 +82,7 @@ static void rehash(st_table *); /* Table of prime numbers 2^n+a, 2<=n<=30. */ -static long primes[] = { +static const long primes[] = { 8 + 3, 16 + 3, 32 + 5, |