summaryrefslogtreecommitdiffstats
path: root/common/tlsf_malloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/tlsf_malloc.c')
-rw-r--r--common/tlsf_malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/tlsf_malloc.c b/common/tlsf_malloc.c
index aa8fc13ea5..a3541d8256 100644
--- a/common/tlsf_malloc.c
+++ b/common/tlsf_malloc.c
@@ -97,5 +97,5 @@ void malloc_stats(void)
tlsf_walk_heap(tlsf_mem_pool, malloc_walker, &s);
- printf("used: %10zu\nfree: %10zu\n", s.used, s.free);
+ printf("used: %zu\nfree: %zu\n", s.used, s.free);
}