diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-08-25 14:46:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-25 14:47:07 -0700 |
commit | cd2b8ae983a277fb3f3c2b2c6747b0a075af1421 (patch) | |
tree | d10d93857bb2711fd4ec7addf13254f01ba9556b /http-push.c | |
parent | f877fd825e97a5e851b655e6fde5e796f53fc03e (diff) | |
download | git-cd2b8ae983a277fb3f3c2b2c6747b0a075af1421.tar.gz |
whitespace: have SP on both sides of an assignment "="
I've deliberately excluded the borrowed code in compat/nedmalloc
directory.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http-push.c')
-rw-r--r-- | http-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-push.c b/http-push.c index 6e8f6d09ab..376331a76f 100644 --- a/http-push.c +++ b/http-push.c @@ -1655,7 +1655,7 @@ static int delete_remote_branch(const char *pattern, int force) return error("Remote HEAD is not a symref"); /* Remote branch must not be the remote HEAD */ - for (i=0; symref && i<MAXDEPTH; i++) { + for (i = 0; symref && i < MAXDEPTH; i++) { if (!strcmp(remote_ref->name, symref)) return error("Remote branch %s is the current HEAD", remote_ref->name); |