[前][次][番号順一覧][スレッド一覧]

ruby-changes:39803

From: nobu <ko1@a...>
Date: Thu, 17 Sep 2015 10:01:57 +0900 (JST)
Subject: [ruby-changes:39803] nobu:r51884 (trunk): id_table.c: fix types

nobu	2015-09-17 10:01:39 +0900 (Thu, 17 Sep 2015)

  New Revision: 51884

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=51884

  Log:
    id_table.c: fix types
    
    * id_table.c (insert_into_chain, insert_into_main): fix argument
      types in prototype declarations.

  Modified files:
    trunk/id_table.c
Index: id_table.c
===================================================================
--- id_table.c	(revision 51883)
+++ id_table.c	(revision 51884)
@@ -842,8 +842,8 @@ find_empty(register sa_table* table, reg https://github.com/ruby/ruby/blob/trunk/id_table.c#L842
 }
 
 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)

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]