1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* st.c (st_foreach): fix type of hash. not st_data_t but st_index_t.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45266 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tarui 2014-03-04 11:51:53 +00:00
parent 3699a6035e
commit de1f3c92e7
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Tue Mar 4 20:50:59 2014 Masaya Tarui <tarui@ruby-lang.org>
* st.c (st_foreach): fix type of hash. not st_data_t but st_index_t.
Tue Mar 4 19:41:40 2014 Tanaka Akira <akr@fsij.org>
* Makefile.in: ".DEFAULT" target removed because it is not for

3
st.c
View file

@ -1034,7 +1034,8 @@ st_foreach(st_table *table, int (*func)(ANYARGS), st_data_t arg)
if (table->entries_packed) {
for (i = 0; i < table->real_entries; i++) {
st_data_t key, val, hash;
st_data_t key, val;
st_index_t hash;
key = PKEY(table, i);
val = PVAL(table, i);
hash = PHASH(table, i);