From: Cheng Renquan <crquan@xxxxxxxxx> The loop for remote->url_nr is really useless, set to the last one directly is better. Signed-off-by: Cheng Renquan <crquan@xxxxxxxxx> --- builtin-remote.c | 10 +++------- 1 files changed, 3 insertions(+), 7 deletions(-) diff --git a/builtin-remote.c b/builtin-remote.c index fff9920..59d69a5 100644 --- a/builtin-remote.c +++ b/builtin-remote.c @@ -839,13 +839,9 @@ static int get_one_entry(struct remote *remote, void *priv) { struct string_list *list = priv; - if (remote->url_nr > 0) { - int i; - - for (i = 0; i < remote->url_nr; i++) - string_list_append(remote->name, list)->util = (void *)remote->url[i]; - } else - string_list_append(remote->name, list)->util = NULL; + string_list_append(remote->name, list)->util = + remote->url_nr > 0 + ? (void *)remote->url[remote->url_nr-1] : NULL; return 0; } -- 1.6.0.2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html