Commit f4260a85 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2623 from suzukaze/fix-indent

Fix indent
parents 5347fb92 ec7dbee4
......@@ -167,7 +167,7 @@ mrb_pool_realloc(mrb_pool *pool, void *p, size_t oldlen, size_t newlen)
}
np = mrb_pool_alloc(pool, newlen);
if (np == NULL) {
return NULL;
return NULL;
}
memcpy(np, p, oldlen);
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