linux-user: Fix warnings caused by missing 'static' attribute
Warnings from the Sparse static analysis tool: linux-user/main.c:40:12: warning: symbol 'filename' was not declared. Should it be static? linux-user/main.c:41:12: warning: symbol 'argv0' was not declared. Should it be static? linux-user/main.c:42:5: warning: symbol 'gdbstub_port' was not declared. Should it be static? linux-user/main.c:43:11: warning: symbol 'envlist' was not declared. Should it be static? Signed-off-by: Stefan Weil <sw@weilnetz.de> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
fe646693ac
commit
8cb7675561
@ -37,10 +37,10 @@
|
||||
char *exec_path;
|
||||
|
||||
int singlestep;
|
||||
const char *filename;
|
||||
const char *argv0;
|
||||
int gdbstub_port;
|
||||
envlist_t *envlist;
|
||||
static const char *filename;
|
||||
static const char *argv0;
|
||||
static int gdbstub_port;
|
||||
static envlist_t *envlist;
|
||||
static const char *cpu_model;
|
||||
unsigned long mmap_min_addr;
|
||||
unsigned long guest_base;
|
||||
|
Loading…
Reference in New Issue
Block a user