From: DJ Delorie Date: Thu, 26 Jan 2017 19:26:23 +0000 (-0500) Subject: More minor style changes. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e77fe7e00370abd1090a665453eee31fddedbb1;p=thirdparty%2Fglibc.git More minor style changes. --- diff --git a/malloc/malloc.c b/malloc/malloc.c index 792e28a1895..b618be8324b 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1791,7 +1791,7 @@ static struct malloc_par mp_ = , .tcache_count = TCACHE_FILL_COUNT, .tcache_max = TCACHE_IDX, - .tcache_max_bytes = tidx2usize(TCACHE_IDX), + .tcache_max_bytes = tidx2usize (TCACHE_IDX), .tcache_unsorted_limit = 0 /* No limit */ #endif }; @@ -3518,7 +3518,7 @@ _int_malloc (mstate av, size_t bytes) e->next = tcache.entries[tc_idx]; tcache.entries[tc_idx] = e; ++tcache.counts[tc_idx]; - found ++; + ++found; } } } @@ -3587,7 +3587,7 @@ _int_malloc (mstate av, size_t bytes) e->next = tcache.entries[tc_idx]; tcache.entries[tc_idx] = e; ++tcache.counts[tc_idx]; - found ++; + ++found; } } }