summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-07-13 10:11:11 +0900
committerYukihiro Matsumoto <[email protected]>2012-07-13 10:11:11 +0900
commitfbd5305c1b2a6e29b866c5f87649e8a8faa6a14d (patch)
tree040c77f951939d2544718523cedda01ca4de96aa
parentae2cd24afbf69e6e4c98ac8e642cb078e9d3750b (diff)
downloadmruby-fbd5305c1b2a6e29b866c5f87649e8a8faa6a14d.tar.gz
mruby-fbd5305c1b2a6e29b866c5f87649e8a8faa6a14d.zip
remove comma from OP_ERR
-rw-r--r--src/codegen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen.c b/src/codegen.c
index 3236713e2..00c6b566d 100644
--- a/src/codegen.c
+++ b/src/codegen.c
@@ -2310,7 +2310,7 @@ codedump(mrb_state *mrb, int n)
printf("OP_TCLASS\tR%d\n", GETARG_A(c));
break;
case OP_ERR:
- printf("OP_ERR\t:L(%d)\n", GETARG_Bx(c));
+ printf("OP_ERR\tL(%d)\n", GETARG_Bx(c));
break;
case OP_EPUSH:
printf("OP_EPUSH\t:I(%d)\n", n+GETARG_Bx(c));