From: DJ Delorie Date: Fri, 27 Jan 2017 19:03:29 +0000 (-0500) Subject: Remove unneeded initializers. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53b383690979db3428371ccf85042f86db3b5615;p=thirdparty%2Fglibc.git Remove unneeded initializers. --- 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)