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:
authorAndy Parkins <andyparkins@gmail.com>2006-11-02 14:10:52 +0300
committerJunio C Hamano <junkio@cox.net>2006-11-03 04:39:58 +0300
commit5c1e235f0f2a4586ca46a5503f6283db0ac1b9ac (patch)
treef73fac5f9d77bffd415dfa6b15cf4ce019026853 /builtin-branch.c
parent7854e526ff170846aef4ae3c71588c98ed9176d0 (diff)
Remove uneccessarily similar printf() from print_ref_list() in builtin-branch
Signed-off-by: Andy Parkins <andyparkins@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-branch.c')
-rw-r--r--builtin-branch.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/builtin-branch.c b/builtin-branch.c
index e028a5390f..368b68ec91 100644
--- a/builtin-branch.c
+++ b/builtin-branch.c
@@ -103,6 +103,7 @@ static int ref_cmp(const void *r1, const void *r2)
static void print_ref_list(int remote_only)
{
int i;
+ char c;
if (remote_only)
for_each_remote_ref(append_ref, NULL);
@@ -112,10 +113,11 @@ static void print_ref_list(int remote_only)
qsort(ref_list, ref_index, sizeof(char *), ref_cmp);
for (i = 0; i < ref_index; i++) {
+ c = ' ';
if (!strcmp(ref_list[i], head))
- printf("* %s\n", ref_list[i]);
- else
- printf(" %s\n", ref_list[i]);
+ c = '*';
+
+ printf("%c %s\n", c, ref_list[i]);
}
}