summaryrefslogtreecommitdiffhomepage
path: root/src/error.c
diff options
context:
space:
mode:
authorTatsuhiko Kubo <[email protected]>2014-08-26 07:47:20 +0900
committerTatsuhiko Kubo <[email protected]>2014-08-27 19:13:40 +0900
commit3202938099c6eabbfa387b2464c4a607a1972fc0 (patch)
tree40f3b3d4273d04084b12efe4afca9a634bfc6d0c /src/error.c
parentecda19f4024cd853d933b059ba9f082a42837096 (diff)
downloadmruby-3202938099c6eabbfa387b2464c4a607a1972fc0.tar.gz
mruby-3202938099c6eabbfa387b2464c4a607a1972fc0.zip
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));
}
}