From c79172dfd5a7600300ac215cce1ccc766ec9aa98 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Sat, 20 Apr 2013 23:11:43 +0900 Subject: put spaces after if/while --- 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 c1ba2a655..860551ce8 100644 --- a/src/string.c +++ b/src/string.c @@ -30,7 +30,7 @@ static mrb_value mrb_str_subseq(mrb_state *mrb, mrb_value str, mrb_int beg, mrb_ #define RESIZE_CAPA(s,capacity) do {\ s->ptr = (char *)mrb_realloc(mrb, s->ptr, (capacity)+1);\ s->aux.capa = capacity;\ -} while (0) +} while(0) void mrb_str_decref(mrb_state *mrb, mrb_shared_string *shared) -- cgit v1.2.3