Re: [PATCH] git: make was_alias non-static

2015-03-01 Thread Eric Sunshine
On Sun, Mar 1, 2015 at 1:48 AM, Alexander Kuleshov wrote: > 'was_alias' variable does not need to store it's value each iteration in the > loop, anyway this variable changes it's value with run_argv. So it does not > need to be static. > > Signed-off-by: Alexander Kuleshov > --- > git.c | 2 +- >

[PATCH] git: make was_alias non-static

2015-02-28 Thread Alexander Kuleshov
'was_alias' variable does not need to store it's value each iteration in the loop, anyway this variable changes it's value with run_argv. So it does not need to be static. Signed-off-by: Alexander Kuleshov --- git.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.c b/git.