Skip to content

Commit ea6640e

Browse files
committed
alloc.c: have SP around arithmetic operators
Signed-off-by: Junio C Hamano <[email protected]>
1 parent f1e835f commit ea6640e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

alloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ static void report(const char *name, unsigned int count, size_t size)
5858
}
5959

6060
#define REPORT(name) \
61-
report(#name, name##_allocs, name##_allocs*sizeof(struct name) >> 10)
61+
report(#name, name##_allocs, name##_allocs * sizeof(struct name) >> 10)
6262

6363
void alloc_report(void)
6464
{

0 commit comments

Comments
 (0)