summaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authorAlexander Kuleshov <kuleshovmail@gmail.com>2015-03-02 12:02:37 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-03-06 20:03:30 (GMT)
commit8fa7975b076ae039f63286601f48e64115e2aba7 (patch)
treef43179fa5fd24372fcc76a6cd6bac040227909d8 /git.c
parent9874fca7122563e28d699a911404fc49d2a24f1c (diff)
downloadgit-8fa7975b076ae039f63286601f48e64115e2aba7.zip
git-8fa7975b076ae039f63286601f48e64115e2aba7.tar.gz
git-8fa7975b076ae039f63286601f48e64115e2aba7.tar.bz2
git: make was_alias and done_help non-static
'was_alias' variable does not need to store it's value on each iteration in the loop; this variable gets assigned the result of run_argv() every time in the loop before being used. 'done_help' variable does not need to be static variable too if we move it out the loop. Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com> Helped-by: Eric Sunshine <sunshine@sunshineco.com> Helped-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git.c')
-rw-r--r--git.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/git.c b/git.c
index 6b5ae6a..29268d2 100644
--- a/git.c
+++ b/git.c
@@ -618,6 +618,7 @@ int main(int argc, char **av)
{
const char **argv = (const char **) av;
const char *cmd;
+ int done_help = 0;
startup_info = &git_startup_info;
@@ -680,9 +681,7 @@ int main(int argc, char **av)
setup_path();
while (1) {
- static int done_help = 0;
- static int was_alias = 0;
- was_alias = run_argv(&argc, &argv);
+ int was_alias = run_argv(&argc, &argv);
if (errno != ENOENT)
break;
if (was_alias) {