* 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:
nobu 2010-10-15 14:11:26 +00:00
Родитель 12dc1ffd47
Коммит e8e2ea4866
1 изменённых файлов: 1 добавлений и 1 удалений

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 */