aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-26 22:52:26 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-26 22:52:26 +0000
commitd79915e444f519f89b9c16d5dc88a99cb799ecf6 (patch)
tree80b6861a650a2bf3ee3f67e44dbeb7fe36928fe7 /include
parente598b4289091657ed47f61527c3fe05ffdb60dab (diff)
downloadruby-d79915e444f519f89b9c16d5dc88a99cb799ecf6.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')
-rw-r--r--include/ruby/st.h2
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;