mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
compile.c: suppress a warning
* compile.c (compile_data_alloc): cast to suppress a warning by apple gcc-4.2. it doesn't cause an error but a warning in spite of -Werror=shorten-64-to-32 option, for some reason. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46996 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9a8b21b3b6
commit
e3ba618fa1
1 changed files with 1 additions and 1 deletions
|
@ -612,7 +612,7 @@ compile_data_alloc(rb_iseq_t *iseq, size_t size)
|
|||
}
|
||||
|
||||
ptr = (void *)&storage->buff[storage->pos];
|
||||
storage->pos += size;
|
||||
storage->pos += (int)size;
|
||||
return ptr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue