Commit ec7dbee4 authored by Jun Hiroe's avatar Jun Hiroe

Fix indent

parent 9d8be78f
...@@ -167,7 +167,7 @@ mrb_pool_realloc(mrb_pool *pool, void *p, size_t oldlen, size_t newlen) ...@@ -167,7 +167,7 @@ mrb_pool_realloc(mrb_pool *pool, void *p, size_t oldlen, size_t newlen)
} }
np = mrb_pool_alloc(pool, newlen); np = mrb_pool_alloc(pool, newlen);
if (np == NULL) { if (np == NULL) {
return NULL; return NULL;
} }
memcpy(np, p, oldlen); memcpy(np, p, oldlen);
return np; return np;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment