Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2005-04-12 22:36:26 +0400
committerPetr Baudis <xpasky@machine>2005-04-13 13:35:04 +0400
commitaebb2679085d2ecc4d1c943ecfb2e87c699f00d0 (patch)
tree0ba51186089993112337d5b34a9ee23fe7cf4fdb /commit-tree.c
parent42d545e8ff33f478a4b7b99562ab073d8820b334 (diff)
[PATCH] Whitespace Fixes
Trivial whitespace fixes. From: Ingo Molnar <mingo@elte.hu> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Petr Baudis <pasky@ucw.cz>
Diffstat (limited to 'commit-tree.c')
-rw-r--r--commit-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-tree.c b/commit-tree.c
index ef1f068510..ac431febe9 100644
--- a/commit-tree.c
+++ b/commit-tree.c
@@ -41,7 +41,7 @@ static void add_buffer(char **bufp, unsigned int *sizep, const char *fmt, ...)
alloc = (size + 32767) & ~32767;
buf = *bufp;
if (newsize > alloc) {
- alloc = (newsize + 32767) & ~32767;
+ alloc = (newsize + 32767) & ~32767;
buf = realloc(buf, alloc);
*bufp = buf;
}