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

ruby-changes:13783

From: nobu <ko1@a...>
Date: Sat, 31 Oct 2009 10:17:37 +0900 (JST)
Subject: [ruby-changes:13783] Ruby:r25580 (trunk): * st.c (unpack_entries): fixed type.

nobu	2009-10-31 10:17:27 +0900 (Sat, 31 Oct 2009)

  New Revision: 25580

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

  Log:
    * st.c (unpack_entries): fixed type.

  Modified files:
    trunk/st.c
    trunk/version.h

Index: st.c
===================================================================
--- st.c	(revision 25579)
+++ st.c	(revision 25580)
@@ -416,7 +416,7 @@
 static void
 unpack_entries(register st_table *table)
 {
-    int i;
+    st_index_t i;
     struct st_table_entry *packed_bins[MAX_PACKED_NUMHASH*2];
     st_table tmp_table = *table;
 
Index: version.h
===================================================================
--- version.h	(revision 25579)
+++ version.h	(revision 25580)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.2"
-#define RUBY_RELEASE_DATE "2009-10-30"
+#define RUBY_RELEASE_DATE "2009-10-31"
 #define RUBY_PATCHLEVEL -1
 #define RUBY_BRANCH_NAME "trunk"
 
@@ -8,7 +8,7 @@
 #define RUBY_VERSION_TEENY 1
 #define RUBY_RELEASE_YEAR 2009
 #define RUBY_RELEASE_MONTH 10
-#define RUBY_RELEASE_DAY 30
+#define RUBY_RELEASE_DAY 31
 
 #include "ruby/version.h"
 

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

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