[PATCH] Whitespace Fixes
[git.git] / commit-tree.c
index ef1f068..ac431fe 100644 (file)
@@ -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;
        }