diff options
author | Brian Gianforcaro <b.gianfo@gmail.com> | 2009-09-01 01:35:10 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-31 23:26:28 -0700 |
commit | eeefa7c90e1b754a2b01d73fd93aaf90afdc4914 (patch) | |
tree | fa561a4acef6f4c1cb8bd0b75a194e3644b99d3e /builtin-for-each-ref.c | |
parent | Merge branch 'lt/approxidate' (diff) | |
download | tgif-eeefa7c90e1b754a2b01d73fd93aaf90afdc4914.tar.xz |
Style fixes, add a space after if/for/while.
The majority of code in core git appears to use a single
space after if/for/while. This is an attempt to bring more
code to this standard. These are entirely cosmetic changes.
Signed-off-by: Brian Gianforcaro <b.gianfo@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-for-each-ref.c')
-rw-r--r-- | builtin-for-each-ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-for-each-ref.c b/builtin-for-each-ref.c index d7cc8cafbf..a5a83f1469 100644 --- a/builtin-for-each-ref.c +++ b/builtin-for-each-ref.c @@ -576,7 +576,7 @@ static void populate_value(struct refinfo *ref) if (!prefixcmp(name, "refname")) refname = ref->refname; - else if(!prefixcmp(name, "upstream")) { + else if (!prefixcmp(name, "upstream")) { struct branch *branch; /* only local branches may have an upstream */ if (prefixcmp(ref->refname, "refs/heads/")) |