Skip to content

Commit

Permalink
id_table.c: fix types
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
nobu committed Sep 17, 2015
1 parent 7ed700d commit 80e386e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions id_table.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 80e386e

Please sign in to comment.