]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove unneeded initializers.
authorDJ Delorie <dj@delorie.com>
Fri, 27 Jan 2017 19:03:29 +0000 (14:03 -0500)
committerDJ Delorie <dj@delorie.com>
Fri, 27 Jan 2017 19:03:29 +0000 (14:03 -0500)
malloc/malloc.c

index b618be8324b3004a48eec5b6a707b3a68443bd96..5b61f75c4bc619589b16efa2137f0d18a0eb0c27 100644 (file)
@@ -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)