mirror of https://gitee.com/openkylin/qemu.git
vga: Fix warning caused by missing 'static' attribute
Warning from the Sparse static analysis tool: hw/display/vga.c:2012:26: warning: symbol 'vmstate_vga_endian' was not declared. Should it be static? Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
2822c1b65b
commit
73d22cafca
|
@ -2032,7 +2032,7 @@ static bool vga_endian_state_needed(void *opaque)
|
|||
return s->default_endian_fb != s->big_endian_fb;
|
||||
}
|
||||
|
||||
const VMStateDescription vmstate_vga_endian = {
|
||||
static const VMStateDescription vmstate_vga_endian = {
|
||||
.name = "vga.endian",
|
||||
.version_id = 1,
|
||||
.minimum_version_id = 1,
|
||||
|
|
Loading…
Reference in New Issue