Signed-off-by: Andy Parkins <andyparkins gmail.com>
---
builtin-branch.c | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/builtin-branch.c b/builtin-branch.c
index e028a53..368b68e 100644
--- a/builtin-branch.c
+++ b/builtin-branch.c
 -103,6
+103,7  static int ref_cmp(const void *r1, const
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_on
qsort(ref_list, ref_index, sizeof(char *), ref_cmp);
for (i = 0; i < ref_index; i++) {
+ c = ' ';
if (!strcmp(ref_list[i], head))
- printf("* %sn", ref_list[i]);
- else
- printf(" %sn", ref_list[i]);
+ c = '*';
+
+ printf("%c %sn", c, ref_list[i]);
}
}
--
1.4.3.2
-
To unsubscribe from this list: send the line
"unsubscribe git" in
the body of a message to majordomo vger.kernel.org
More majordomo info at http://vge
r.kernel.org/majordomo-info.html
|