diff options
author | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-06-26 22:52:26 +0000 |
---|---|---|
committer | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-06-26 22:52:26 +0000 |
commit | b8d544832b8cbb041b87fc45c2c5614143af0fb5 (patch) | |
tree | 80b6861a650a2bf3ee3f67e44dbeb7fe36928fe7 /include/ruby/st.h | |
parent | d3725a86dee7c80dba1e16110545ff69c4ad9e1d (diff) | |
download | ruby-b8d544832b8cbb041b87fc45c2c5614143af0fb5.tar.gz |
Revert "st.c: use ccan linked-list (try 2)"
This reverts commit r51044
Still getting failure notices from ko1's CI machine.
ref: g3qkqn
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/st.h')
-rw-r--r-- | include/ruby/st.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/st.h b/include/ruby/st.h index 190bad2a35..b4fdf7e8ea 100644 --- a/include/ruby/st.h +++ b/include/ruby/st.h @@ -86,7 +86,7 @@ struct st_table { union { struct { struct st_table_entry **bins; - void *private_list_head[2]; + struct st_table_entry *head, *tail; } big; struct { struct st_packed_entry *entries; |