From: Michael Haggerty Date: Mon, 22 Jun 2015 14:02:53 +0000 (+0200) Subject: remove_branches(): remove temporary X-Git-Tag: v2.6.0-rc0~105^2~17 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/b4c4af832bc27afab472f67bdd58ecbf290dcb2f?ds=inline remove_branches(): remove temporary Signed-off-by: Michael Haggerty Signed-off-by: Junio C Hamano --- diff --git a/builtin/remote.c b/builtin/remote.c index f4a6ec9f13..53b8e13975 100644 --- a/builtin/remote.c +++ b/builtin/remote.c @@ -756,8 +756,7 @@ static int remove_branches(struct string_list *branches) strbuf_release(&err); for (i = 0; i < branches->nr; i++) { - struct string_list_item *item = branches->items + i; - const char *refname = item->string; + const char *refname = branches->items[i].string; if (delete_ref(refname, NULL, 0)) result |= error(_("Could not remove branch %s"), refname);