* insns.def (opt_case_dispatch): need cast.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@25815 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2009-11-17 07:01:27 +00:00
parent 44895d6ea2
commit f4d1fd3175
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Tue Nov 17 16:01:02 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* insns.def (opt_case_dispatch): need cast.
Tue Nov 17 15:46:23 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* dir.c (READDIR): this branch doesn't have rb_w32_readdir_with_enc().

View file

@ -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);

View file

@ -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