mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* iseq.c (insn_operand_intern): fix format specifier.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
12dc1ffd47
commit
e8e2ea4866
1 changed files with 1 additions and 1 deletions
2
iseq.c
2
iseq.c
|
@ -739,7 +739,7 @@ insn_operand_intern(rb_iseq_t *iseq,
|
|||
|
||||
switch (type) {
|
||||
case TS_OFFSET: /* LONG */
|
||||
ret = rb_sprintf("%"PRIdSIZE, pos + len + op);
|
||||
ret = rb_sprintf("%"PRIdVALUE, (VALUE)(pos + len + op));
|
||||
break;
|
||||
|
||||
case TS_NUM: /* ULONG */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue