diff options
author | Jason Evans <je@fb.com> | 2011-02-14 02:44:59 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2011-02-14 02:44:59 (GMT) |
commit | 655f04a5a47b5292e328bb902fb5f574d09e2e9d (patch) | |
tree | e63894157eab785dc37d123fd6c148b0a6c1d87b /jemalloc/src | |
parent | 9dcad2dfd11762ea3b542ef45a20bd8297c6f18c (diff) | |
download | jemalloc-655f04a5a47b5292e328bb902fb5f574d09e2e9d.zip jemalloc-655f04a5a47b5292e328bb902fb5f574d09e2e9d.tar.gz jemalloc-655f04a5a47b5292e328bb902fb5f574d09e2e9d.tar.bz2 |
Fix style nits.
Diffstat (limited to 'jemalloc/src')
-rw-r--r-- | jemalloc/src/chunk_mmap.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/jemalloc/src/chunk_mmap.c b/jemalloc/src/chunk_mmap.c index bc36755..164e86e 100644 --- a/jemalloc/src/chunk_mmap.c +++ b/jemalloc/src/chunk_mmap.c @@ -206,13 +206,15 @@ chunk_alloc_mmap_internal(size_t size, bool noreserve) void * chunk_alloc_mmap(size_t size) { - return chunk_alloc_mmap_internal(size, false); + + return (chunk_alloc_mmap_internal(size, false)); } void * chunk_alloc_mmap_noreserve(size_t size) { - return chunk_alloc_mmap_internal(size, true); + + return (chunk_alloc_mmap_internal(size, true)); } void |