From ea6640ec3eb31191bafa6ed4d874d731173e1c15 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 15 Oct 2013 15:25:53 -0700 Subject: alloc.c: have SP around arithmetic operators Signed-off-by: Junio C Hamano --- alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alloc.c') diff --git a/alloc.c b/alloc.c index aeae55c976..f3ee745695 100644 --- a/alloc.c +++ b/alloc.c @@ -58,7 +58,7 @@ static void report(const char *name, unsigned int count, size_t size) } #define REPORT(name) \ - report(#name, name##_allocs, name##_allocs*sizeof(struct name) >> 10) + report(#name, name##_allocs, name##_allocs * sizeof(struct name) >> 10) void alloc_report(void) { -- cgit v1.2.3