From 4824d1b8c2d0e9e6a549c836aa6a7698fdba021b Mon Sep 17 00:00:00 2001 From: Elia Pinto Date: Wed, 29 Jan 2014 05:25:00 -0800 Subject: [PATCH] bisect.c: reduce scope of variable Signed-off-by: Elia Pinto Signed-off-by: Junio C Hamano --- bisect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bisect.c b/bisect.c index 1e46a4f50e..c718249a82 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); -- 2.43.2