From 8125399c09ae3c5e433fd285326ed38d85bda891 Mon Sep 17 00:00:00 2001 From: normal Date: Mon, 31 Mar 2014 01:34:19 +0000 Subject: st.c (st_init_table_with_size): update comment git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45481 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ st.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a41e9232a4..8c16c1820a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Mar 31 10:28:01 2014 Eric Wong + + * st.c (st_init_table_with_size): update comment + [Feature #9425] + Sun Mar 30 23:39:26 2014 NAKAMURA Usaku * win32/win32.c (rb_w32_accept, open_ifs_socket, socketpair_internal): diff --git a/st.c b/st.c index 5a0b62a664..ccf22eef4d 100644 --- a/st.c +++ b/st.c @@ -201,7 +201,7 @@ st_init_table_with_size(const struct st_hash_type *type, st_index_t size) size = ST_DEFAULT_PACKED_TABLE_SIZE; } else { - size = new_size(size); /* round up to prime number */ + size = new_size(size); /* round up to power-of-two */ } tbl->num_bins = size; tbl->bins = st_alloc_bins(size); -- cgit v1.2.3