mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
compile.c: fix up r65411
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5bb1f4e73f
commit
d36ab02b95
1 changed files with 1 additions and 1 deletions
|
@ -9422,7 +9422,7 @@ ibf_dump_object_hash(struct ibf_dump *dump, VALUE obj)
|
|||
{
|
||||
long len = RHASH_SIZE(obj);
|
||||
(void)IBF_W(&len, long, 1);
|
||||
if (len > 0) rb_hash_foreach(obj, ibf_dump_object_hash_i, (st_data_t)dump);
|
||||
if (len > 0) rb_hash_foreach(obj, ibf_dump_object_hash_i, (VALUE)dump);
|
||||
}
|
||||
|
||||
static VALUE
|
||||
|
|
Loading…
Add table
Reference in a new issue