summaryrefslogtreecommitdiffhomepage
path: root/src/cdump.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cdump.c')
-rw-r--r--src/cdump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cdump.c b/src/cdump.c
index 47c89300c..7029ae3de 100644
--- a/src/cdump.c
+++ b/src/cdump.c
@@ -1,6 +1,6 @@
/*
** cdump.c - mruby binary dumper (C source format)
-**
+**
** See Copyright Notice in mruby.h
*/
@@ -124,7 +124,7 @@ make_cdump_irep(mrb_state *mrb, int irep_no, FILE *f)
SOURCE_CODE (" irep->syms = mrb_malloc(mrb, sizeof(mrb_sym)*%d);", irep->slen);
for (n=0; n<irep->slen; n++)
if (irep->syms[n]) {
- SOURCE_CODE (" irep->syms[%d] = mrb_intern(mrb, \"%s\");", n, mrb_sym2name(mrb, irep->syms[n]));
+ SOURCE_CODE (" irep->syms[%d] = mrb_intern(mrb, \"%s\");", n, mrb_sym2name(mrb, irep->syms[n]));
}
}
else