summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-14 00:50:10 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-14 00:50:10 +0000
commita3d0a213dc662d5196682dd3b5367158e18116fa (patch)
treed04650da5f371fa3bf5c780a40e710752506835c /compile.c
parent5cff0face35fe88affd4338a2ed7845a60509563 (diff)
* compile.c (insn_data_to_s_detail), iseq.c (insn_operand_intern):
fixed format specifiers. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26914 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index 3a910bea0c..1db4e9c6b8 100644
--- a/compile.c
+++ b/compile.c
@@ -4973,7 +4973,7 @@ insn_data_to_s_detail(INSN *iobj)
for (j = 0; types[j]; j++) {
char type = types[j];
- printf("str: %p, type: %c\n", str, type);
+ printf("str: %"PRIxVALUE", type: %c\n", str, type);
switch (type) {
case TS_OFFSET: /* label(destination position) */