From 2e77fe7e00370abd1090a665453eee31fddedbb1 Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Thu, 26 Jan 2017 14:26:23 -0500 Subject: More minor style changes. --- malloc/malloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'malloc/malloc.c') diff --git a/malloc/malloc.c b/malloc/malloc.c index 792e28a..b618be8 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; } } } -- cgit v1.1