summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-26 00:57:30 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-26 00:57:30 +0000
commitac24e257abc6d315b84072171a792b20d8b9d7a6 (patch)
treeea7391b8d9612fbcb1c90e78657db5b64beb3756 /st.c
parente559b24b526bd4d2559283ed2640681595b5ff3d (diff)
* st.c (st_add_direct): int is not always same with st_index_t. some
version of clang reports error. * thread.c (vm_living_thread_num): ditto. reported by d6rkaiz (Isao Sugimoto) at [ruby-dev:47096] [Backport #7946] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@39503 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index fda5784f98..c093bfd392 100644
--- a/st.c
+++ b/st.c
@@ -515,7 +515,7 @@ st_add_direct(st_table *table, st_data_t key, st_data_t value)
st_index_t hash_val, bin_pos;
if (table->entries_packed) {
- int i;
+ st_index_t i;
if (MORE_PACKABLE_P(table)) {
i = table->num_entries++;
table->bins[i*2] = (struct st_table_entry*)key;