]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
More minor style changes.
authorDJ Delorie <dj@delorie.com>
Thu, 26 Jan 2017 19:26:23 +0000 (14:26 -0500)
committerDJ Delorie <dj@delorie.com>
Thu, 26 Jan 2017 19:26:23 +0000 (14:26 -0500)
malloc/malloc.c

index 792e28a18954a7ff9800e5406d58c4b5911530ff..b618be8324b3004a48eec5b6a707b3a68443bd96 100644 (file)
@@ -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;
                    }
                }
            }