diff options
author | DJ Delorie <dj@delorie.com> | 2017-01-30 20:10:18 -0500 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2017-01-31 19:59:37 -0500 |
commit | 8fc36e8a22e61051641f5c7f979f1f9fb07a5a8d (patch) | |
tree | 7786492d187c5b64ff049b99da43b7798898f98b /malloc/malloc.c | |
parent | 53b383690979db3428371ccf85042f86db3b5615 (diff) | |
download | glibc-8fc36e8a22e61051641f5c7f979f1f9fb07a5a8d.zip glibc-8fc36e8a22e61051641f5c7f979f1f9fb07a5a8d.tar.gz glibc-8fc36e8a22e61051641f5c7f979f1f9fb07a5a8d.tar.bz2 |
Fix tunables conditionals
- Fix ifdef -> if
- Conditionalize tunables hooks
Diffstat (limited to 'malloc/malloc.c')
-rw-r--r-- | malloc/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c index 5b61f75..d19fa03 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -5083,7 +5083,7 @@ do_set_arena_max (size_t value) return 1; } -#ifdef USE_TCACHE +#if USE_TCACHE static inline int __always_inline do_set_tcache_max (size_t value) |