1
0
mirror of https://github.com/git/git.git synced 2024-11-19 00:44:22 +01:00

alloc.c: have SP around arithmetic operators

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2013-10-15 15:25:53 -07:00
parent f1e835fa13
commit ea6640ec3e

@ -58,7 +58,7 @@ static void report(const char *name, unsigned int count, size_t size)
} }
#define REPORT(name) \ #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) void alloc_report(void)
{ {