diff options
author | Jason Evans <jasone@canonware.com> | 2017-01-13 18:35:35 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2017-01-13 22:49:24 (GMT) |
commit | ffbb7dac3d669697ab8b39367994a58e0c1fa42d (patch) | |
tree | 9765e69b5048a990b72c6af86b89fac8814d8f62 /src/extent_mmap.c | |
parent | 87e81e609b5d1bd8821d7256208091c546e62c5a (diff) | |
download | jemalloc-ffbb7dac3d669697ab8b39367994a58e0c1fa42d.zip jemalloc-ffbb7dac3d669697ab8b39367994a58e0c1fa42d.tar.gz jemalloc-ffbb7dac3d669697ab8b39367994a58e0c1fa42d.tar.bz2 |
Remove leading blank lines from function bodies.
This resolves #535.
Diffstat (limited to 'src/extent_mmap.c')
-rw-r--r-- | src/extent_mmap.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/extent_mmap.c b/src/extent_mmap.c index 23dd4f8..e685a45 100644 --- a/src/extent_mmap.c +++ b/src/extent_mmap.c @@ -69,7 +69,6 @@ extent_alloc_mmap(void *new_addr, size_t size, size_t alignment, bool *zero, bool extent_dalloc_mmap(void *addr, size_t size) { - if (config_munmap) pages_unmap(addr, size); return (!config_munmap); |