Add a missing space after ",".

This commit is contained in:
Tatsuhiko Kubo
2014-08-26 07:47:20 +09:00
parent ecda19f402
commit 3202938099
6 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ str_new(mrb_state *mrb, const char *p, size_t len)
s = mrb_obj_alloc_string(mrb);
if (len < RSTRING_EMBED_LEN_MAX) {
RSTR_SET_EMBED_FLAG(s);
RSTR_SET_EMBED_LEN(s,len);
RSTR_SET_EMBED_LEN(s, len);
if (p) {
memcpy(s->as.ary, p, len);
}