From: Junio C Hamano Date: Tue, 15 Oct 2013 22:25:53 +0000 (-0700) Subject: alloc.c: have SP around arithmetic operators X-Git-Tag: v1.8.5-rc0~14^2~3 X-Git-Url: http://git.bitbasher.net/?a=commitdiff_plain;h=ea6640ec3eb31191bafa6ed4d874d731173e1c15;p=git.git alloc.c: have SP around arithmetic operators Signed-off-by: Junio C Hamano --- 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) {