From 3202938099c6eabbfa387b2464c4a607a1972fc0 Mon Sep 17 00:00:00 2001 From: Tatsuhiko Kubo Date: Tue, 26 Aug 2014 07:47:20 +0900 Subject: Add a missing space after ",". --- src/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/string.c') diff --git a/src/string.c b/src/string.c index e8632e5e4..a0a069c06 100644 --- a/src/string.c +++ b/src/string.c @@ -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); } -- cgit v1.2.3