Skip to content

Commit 80e386e

Browse files
committed
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
1 parent 7ed700d commit 80e386e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

id_table.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -842,8 +842,8 @@ find_empty(register sa_table* table, register sa_index_t pos)
842842
}
843843

844844
static void resize(register sa_table* table);
845-
static int insert_into_chain(register sa_table*, register sa_index_t, st_data_t, sa_index_t pos);
846-
static int insert_into_main(register sa_table*, sa_index_t, st_data_t, sa_index_t pos, sa_index_t prev_pos);
845+
static int insert_into_chain(register sa_table*, register id_key_t, st_data_t, sa_index_t pos);
846+
static int insert_into_main(register sa_table*, id_key_t, st_data_t, sa_index_t pos, sa_index_t prev_pos);
847847

848848
static int
849849
sa_insert(register sa_table* table, id_key_t key, VALUE value)

0 commit comments

Comments
 (0)