summaryrefslogtreecommitdiff
path: root/bisect.c
diff options
context:
space:
mode:
authorElia Pinto <gitter.spiros@gmail.com>2014-01-29 13:25:00 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-01-31 18:44:04 (GMT)
commit4824d1b8c2d0e9e6a549c836aa6a7698fdba021b (patch)
tree9ce3385866adae9b58215052fd1d94129d7ccba3 /bisect.c
parentac930287ff16823531b541a8e6a7436279e612be (diff)
downloadgit-4824d1b8c2d0e9e6a549c836aa6a7698fdba021b.zip
git-4824d1b8c2d0e9e6a549c836aa6a7698fdba021b.tar.gz
git-4824d1b8c2d0e9e6a549c836aa6a7698fdba021b.tar.bz2
bisect.c: reduce scope of variable
Signed-off-by: Elia Pinto <gitter.spiros@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bisect.c')
-rw-r--r--bisect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bisect.c b/bisect.c
index 1e46a4f..c718249 100644
--- a/bisect.c
+++ b/bisect.c
@@ -685,7 +685,6 @@ static void mark_expected_rev(char *bisect_rev_hex)
static int bisect_checkout(char *bisect_rev_hex, int no_checkout)
{
- int res;
mark_expected_rev(bisect_rev_hex);
@@ -696,6 +695,7 @@ static int bisect_checkout(char *bisect_rev_hex, int no_checkout)
die("update-ref --no-deref HEAD failed on %s",
bisect_rev_hex);
} else {
+ int res;
res = run_command_v_opt(argv_checkout, RUN_GIT_CMD);
if (res)
exit(res);