summaryrefslogtreecommitdiffhomepage
path: root/src/error.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-08-27 23:48:34 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-08-27 23:48:34 +0900
commit7a25b53301bd92ec7dfd1490c3b8420c448670f0 (patch)
tree08e0b75000cdfe4db6ff82f5858f890df95fd0bf /src/error.c
parent0d400477933f09f1017db5a87bd14ff4d9348cff (diff)
parent3202938099c6eabbfa387b2464c4a607a1972fc0 (diff)
downloadmruby-7a25b53301bd92ec7dfd1490c3b8420c448670f0.tar.gz
mruby-7a25b53301bd92ec7dfd1490c3b8420c448670f0.zip
Merge pull request #2567 from cubicdaiya/issues/space_after_comma2
Add a missing space after ",".
Diffstat (limited to 'src/error.c')
-rw-r--r--src/error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.c b/src/error.c
index fa1fcb9b7..0a1a97a0b 100644
--- a/src/error.c
+++ b/src/error.c
@@ -261,7 +261,7 @@ mrb_vformat(mrb_state *mrb, const char *format, va_list ap)
else {
size = p - b;
mrb_ary_push(mrb, ary, mrb_str_new(mrb, b, size));
- return mrb_ary_join(mrb, ary, mrb_str_new(mrb,NULL,0));
+ return mrb_ary_join(mrb, ary, mrb_str_new(mrb, NULL, 0));
}
}