From 239897c2e6fa04dc3660a6234129b919e84ca51c Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 17 Nov 2009 07:01:27 +0000 Subject: * insns.def (opt_case_dispatch): need cast. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@25815 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ insns.def | 2 +- version.h | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e3e8d10fb..989d1b0eb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Nov 17 16:01:02 2009 NAKAMURA Usaku + + * insns.def (opt_case_dispatch): need cast. + Tue Nov 17 15:46:23 2009 NAKAMURA Usaku * dir.c (READDIR): this branch doesn't have rb_w32_readdir_with_enc(). diff --git a/insns.def b/insns.def index 48d1275b3..7aa18994d 100644 --- a/insns.def +++ b/insns.def @@ -1251,7 +1251,7 @@ opt_case_dispatch key, -1 }; - st_foreach(RHASH_TBL(hash), opt_case_dispatch_i, &arg); + st_foreach(RHASH_TBL(hash), opt_case_dispatch_i, (st_data_t)&arg); if (arg.label != -1) { JUMP(arg.label); diff --git a/version.h b/version.h index 419631544..77b761407 100644 --- a/version.h +++ b/version.h @@ -1,5 +1,5 @@ #define RUBY_VERSION "1.9.1" -#define RUBY_PATCHLEVEL 337 +#define RUBY_PATCHLEVEL 338 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 9 #define RUBY_VERSION_TEENY 1 -- cgit