提交 094aa09a 编写于 作者: J Junio C Hamano

Merge branch 'rs/wt-status-cleanup'

Code cleanup.

* rs/wt-status-cleanup:
  wt-status: use separate variable for result of shorten_unambiguous_ref
...@@ -1763,6 +1763,7 @@ static void wt_shortstatus_print_tracking(struct wt_status *s) ...@@ -1763,6 +1763,7 @@ static void wt_shortstatus_print_tracking(struct wt_status *s)
const char *branch_color_remote = color(WT_STATUS_REMOTE_BRANCH, s); const char *branch_color_remote = color(WT_STATUS_REMOTE_BRANCH, s);
const char *base; const char *base;
char *short_base;
const char *branch_name; const char *branch_name;
int num_ours, num_theirs; int num_ours, num_theirs;
int upstream_is_gone = 0; int upstream_is_gone = 0;
...@@ -1797,10 +1798,10 @@ static void wt_shortstatus_print_tracking(struct wt_status *s) ...@@ -1797,10 +1798,10 @@ static void wt_shortstatus_print_tracking(struct wt_status *s)
upstream_is_gone = 1; upstream_is_gone = 1;
} }
base = shorten_unambiguous_ref(base, 0); short_base = shorten_unambiguous_ref(base, 0);
color_fprintf(s->fp, header_color, "..."); color_fprintf(s->fp, header_color, "...");
color_fprintf(s->fp, branch_color_remote, "%s", base); color_fprintf(s->fp, branch_color_remote, "%s", short_base);
free((char *)base); free(short_base);
if (!upstream_is_gone && !num_ours && !num_theirs) if (!upstream_is_gone && !num_ours && !num_theirs)
goto conclude; goto conclude;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册