summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hash.c b/hash.c
index 647c21803c..b2008350c2 100644
--- a/hash.c
+++ b/hash.c
@@ -94,7 +94,7 @@ rb_any_hash(VALUE a)
}
}
-static struct st_hash_type objhash = {
+static const struct st_hash_type objhash = {
rb_any_cmp,
rb_any_hash,
};
@@ -1614,7 +1614,7 @@ rb_hash_flatten(int argc, VALUE *argv, VALUE hash)
return ary;
}
-static struct st_hash_type identhash = {
+static const struct st_hash_type identhash = {
st_numcmp,
st_numhash,
};