Browse Source

alloc.c: have SP around arithmetic operators

Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Junio C Hamano 12 years ago
parent
commit
ea6640ec3e
  1. 2
      alloc.c

2
alloc.c

@ -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)
{ {

Loading…
Cancel
Save