From f6bd2e5a178aed23398996f008feee5bf070a624 Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Wed, 23 Mar 2016 15:32:07 -0700 Subject: [PATCH] Code formatting fixes. --- src/tcache.c | 3 ++- test/stress/microbench.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/tcache.c b/src/tcache.c index 6e32f404..c12727a6 100644 --- a/src/tcache.c +++ b/src/tcache.c @@ -23,7 +23,8 @@ static tcaches_t *tcaches_avail; /******************************************************************************/ -size_t tcache_salloc(const void *ptr) +size_t +tcache_salloc(const void *ptr) { return (arena_salloc(ptr, false)); diff --git a/test/stress/microbench.c b/test/stress/microbench.c index ee39fea7..7dc45f89 100644 --- a/test/stress/microbench.c +++ b/test/stress/microbench.c @@ -1,7 +1,8 @@ #include "test/jemalloc_test.h" JEMALLOC_INLINE_C void -time_func(timedelta_t *timer, uint64_t nwarmup, uint64_t niter, void (*func)(void)) +time_func(timedelta_t *timer, uint64_t nwarmup, uint64_t niter, + void (*func)(void)) { uint64_t i;