summaryrefslogtreecommitdiffhomepage
path: root/src/cdump.c
diff options
context:
space:
mode:
authorroco <[email protected]>2012-04-30 14:29:19 -0700
committerroco <[email protected]>2012-04-30 14:29:19 -0700
commit4ec6d41f16e20fadc6f4c0de363a26a59a1a13fb (patch)
tree40539734fd32004652f7c98e2b88921aa57c8b25 /src/cdump.c
parent6b739d91735fe83bd29f6ca8505c00d530e85584 (diff)
downloadmruby-4ec6d41f16e20fadc6f4c0de363a26a59a1a13fb.tar.gz
mruby-4ec6d41f16e20fadc6f4c0de363a26a59a1a13fb.zip
rm whitespace
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