vl: Make display_remote a local variable
authorEduardo Habkost <ehabkost@redhat.com>
Tue, 19 Apr 2016 19:55:28 +0000 (16:55 -0300)
committerEduardo Habkost <ehabkost@redhat.com>
Fri, 20 May 2016 17:28:54 +0000 (14:28 -0300)
The variable is used only inside main(), so it can be local.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
vl.c

diff --git a/vl.c b/vl.c
index aaf9134..a44e155 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -131,7 +131,6 @@ const char *bios_name = NULL;
 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
 int request_opengl = -1;
 int display_opengl;
-static int display_remote;
 const char* keyboard_layout = NULL;
 ram_addr_t ram_size;
 const char *mem_path = NULL;
@@ -2972,6 +2971,7 @@ int main(int argc, char **argv, char **envp)
     bool userconfig = true;
     bool nographic = false;
     DisplayType display_type = DT_DEFAULT;
+    int display_remote = 0;
     const char *log_mask = NULL;
     const char *log_file = NULL;
     char *trace_file = NULL;