perf util: Make file/host_bigendian variable local
authorNamhyung Kim <[email protected]>
Tue, 4 Jun 2013 05:20:24 +0000 (14:20 +0900)
committerArnaldo Carvalho de Melo <[email protected]>
Fri, 12 Jul 2013 16:52:21 +0000 (13:52 -0300)
They're not used anywhere, just make them local variables.

Signed-off-by: Namhyung Kim <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Steven Rostedt <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/util/trace-event-read.c

index 6166294d7f22b7c6020a5a53179e37005cde67ba..0dd9fbda88ebed59966c2c8b853a80e0131f4f47 100644 (file)
@@ -39,9 +39,6 @@
 
 static int input_fd;
 
-int file_bigendian;
-int host_bigendian;
-
 static ssize_t trace_data_size;
 static bool repipe;
 
@@ -342,6 +339,8 @@ ssize_t trace_report(int fd, struct pevent **ppevent, bool __repipe)
        int show_funcs = 0;
        int show_printk = 0;
        ssize_t size = -1;
+       int file_bigendian;
+       int host_bigendian;
        int file_long_size;
        int file_page_size;
        struct pevent *pevent;