From 80e386e92c65db836a6431d1c1f58ea16c2d719f Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 17 Sep 2015 01:01:39 +0000 Subject: id_table.c: fix types * id_table.c (insert_into_chain, insert_into_main): fix argument types in prototype declarations. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51884 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- id_table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/id_table.c b/id_table.c index b40a3c9ce9..64475efe1c 100644 --- a/id_table.c +++ b/id_table.c @@ -842,8 +842,8 @@ find_empty(register sa_table* table, register sa_index_t pos) } static void resize(register sa_table* table); -static int insert_into_chain(register sa_table*, register sa_index_t, st_data_t, sa_index_t pos); -static int insert_into_main(register sa_table*, sa_index_t, st_data_t, sa_index_t pos, sa_index_t prev_pos); +static int insert_into_chain(register sa_table*, register id_key_t, st_data_t, sa_index_t pos); +static int insert_into_main(register sa_table*, id_key_t, st_data_t, sa_index_t pos, sa_index_t prev_pos); static int sa_insert(register sa_table* table, id_key_t key, VALUE value) -- cgit v1.2.3