diff options
author | Jason Evans <je@fb.com> | 2016-04-13 06:18:25 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2016-04-13 06:18:25 (GMT) |
commit | 8413463f3a334f14c55589e57d3e82dd594ef479 (patch) | |
tree | 871e15a632f911bea32934dc551abf9e7d77be5a | |
parent | bab58ef401b0dec8230bd2d371e135009cd06924 (diff) | |
download | jemalloc-8413463f3a334f14c55589e57d3e82dd594ef479.zip jemalloc-8413463f3a334f14c55589e57d3e82dd594ef479.tar.gz jemalloc-8413463f3a334f14c55589e57d3e82dd594ef479.tar.bz2 |
Fix a style nit.
-rw-r--r-- | include/jemalloc/internal/ph.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/jemalloc/internal/ph.h b/include/jemalloc/internal/ph.h index 70b6e2c..4f91c33 100644 --- a/include/jemalloc/internal/ph.h +++ b/include/jemalloc/internal/ph.h @@ -211,7 +211,8 @@ a_prefix##new(a_ph_type *ph) \ memset(ph, 0, sizeof(ph(a_type))); \ } \ a_attr bool \ -a_prefix##empty(a_ph_type *ph) { \ +a_prefix##empty(a_ph_type *ph) \ +{ \ \ return (ph->ph_root == NULL); \ } \ |