Skip to content

Commit

Permalink
alloc.c: have SP around arithmetic operators
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Oct 16, 2013
1 parent f1e835f commit ea6640e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit ea6640e

Please sign in to comment.