aboutsummaryrefslogtreecommitdiff
path: root/malloc/malloc.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2017-01-27 14:03:29 -0500
committerDJ Delorie <dj@delorie.com>2017-01-27 14:03:29 -0500
commit53b383690979db3428371ccf85042f86db3b5615 (patch)
tree7878ae80615fd5826e3124aebe567830c52e60b3 /malloc/malloc.c
parent2e77fe7e00370abd1090a665453eee31fddedbb1 (diff)
downloadglibc-53b383690979db3428371ccf85042f86db3b5615.zip
glibc-53b383690979db3428371ccf85042f86db3b5615.tar.gz
glibc-53b383690979db3428371ccf85042f86db3b5615.tar.bz2
Remove unneeded initializers.
Diffstat (limited to 'malloc/malloc.c')
-rw-r--r--malloc/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c
index b618be8..5b61f75 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -2944,7 +2944,7 @@ typedef struct TCache {
TCacheEntry *entries[TCACHE_IDX];
} TCache;
-static __thread TCache tcache = {0,0,0,{0},{0}};
+static __thread TCache tcache = {0,{0},{0}};
static void __attribute__ ((section ("__libc_thread_freeres_fn")))
tcache_thread_freeres (void)