diff options
| author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-03-27 11:00:07 -0300 | 
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-04-01 12:22:48 -0300 | 
| commit | b5ded713974f537a950e841b5c583f49c80266ff (patch) | |
| tree | 3a1acf5c8ae44edba822137b3fda385500da7662 | |
| parent | 1c6763cb9962d6d83a8470934c20ed525ef62355 (diff) | |
| download | olio-linux-3.10-b5ded713974f537a950e841b5c583f49c80266ff.tar.xz olio-linux-3.10-b5ded713974f537a950e841b5c583f49c80266ff.zip | |
perf tools: Convert needless static variable to local
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-k85ajz97xbrd8fkt2a8pp7q1@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
| -rw-r--r-- | tools/perf/perf.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/tools/perf/perf.c b/tools/perf/perf.c index 31c9380cfa6..85e1aed9520 100644 --- a/tools/perf/perf.c +++ b/tools/perf/perf.c @@ -518,9 +518,8 @@ int main(int argc, const char **argv)  	while (1) {  		static int done_help; -		static int was_alias; +		int was_alias = run_argv(&argc, &argv); -		was_alias = run_argv(&argc, &argv);  		if (errno != ENOENT)  			break; |