My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f1e835f
)
alloc.c: have SP around arithmetic operators
author
Junio C Hamano
<gitster@pobox.com>
Tue, 15 Oct 2013 22:25:53 +0000
(15:25 -0700)
committer
Junio 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
patch
|
blob
|
history
diff --git
a/alloc.c
b/alloc.c
index
aeae55c
..
f3ee745
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)
{