]> git.ipfire.org Git - thirdparty/git.git/commitdiff
alloc.c: have SP around arithmetic operators
authorJunio C Hamano <gitster@pobox.com>
Tue, 15 Oct 2013 22:25:53 +0000 (15:25 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 16 Oct 2013 17:27:26 +0000 (10:27 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
alloc.c

diff --git a/alloc.c b/alloc.c
index aeae55c976802264d714282218e58a858a9c68b5..f3ee745695643c00f175288a9592ab073dd589b0 100644 (file)
--- 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)
 {