From 53b383690979db3428371ccf85042f86db3b5615 Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Fri, 27 Jan 2017 14:03:29 -0500 Subject: [PATCH] Remove unneeded initializers. --- malloc/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malloc/malloc.c b/malloc/malloc.c index b618be8324b..5b61f75c4bc 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) -- 2.47.2