Git development
 help / color / mirror / Atom feed
* [PATCH] git: make was_alias and done_help non-static
@ 2015-03-02 12:02 Alexander Kuleshov
  2015-03-02 20:29 ` Jeff King
  2015-03-03 10:58 ` Stefan Näwe
  0 siblings, 2 replies; 3+ messages in thread
From: Alexander Kuleshov @ 2015-03-02 12:02 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano, Alexander Kuleshov

'was_alias' variable does not need to store it's value on each
iteration in the loop, anyway this variable changes it's value with run_argv.

'done_help' variable does not need to be static variable too if we'll move it
out the loop.

So these variables do not need to be static.

Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
Helped-by: Eric Sunshine <sunshine@sunshineco.com>
---
 git.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/git.c b/git.c
index 1780233..96723b8 100644
--- a/git.c
+++ b/git.c
@@ -619,6 +619,7 @@ int main(int argc, char **av)
 {
 	const char **argv = (const char **) av;
 	const char *cmd;
+	int done_help, was_alias;
 
 	startup_info = &git_startup_info;
 
@@ -681,8 +682,6 @@ 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);
 		if (errno != ENOENT)
 			break;
-- 
2.3.1.422.ge618558

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-03-03 11:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-02 12:02 [PATCH] git: make was_alias and done_help non-static Alexander Kuleshov
2015-03-02 20:29 ` Jeff King
2015-03-03 10:58 ` Stefan Näwe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox