diff options
| author | Tatsuhiko Kubo <[email protected]> | 2014-08-26 07:47:20 +0900 |
|---|---|---|
| committer | Tatsuhiko Kubo <[email protected]> | 2014-08-27 19:13:40 +0900 |
| commit | 3202938099c6eabbfa387b2464c4a607a1972fc0 (patch) | |
| tree | 40f3b3d4273d04084b12efe4afca9a634bfc6d0c /src/string.c | |
| parent | ecda19f4024cd853d933b059ba9f082a42837096 (diff) | |
| download | mruby-3202938099c6eabbfa387b2464c4a607a1972fc0.tar.gz mruby-3202938099c6eabbfa387b2464c4a607a1972fc0.zip | |
Add a missing space after ",".
Diffstat (limited to 'src/string.c')
| -rw-r--r-- | src/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |
