diff options
author | Blue Swirl | 2009-12-04 21:44:44 +0100 |
---|---|---|
committer | Blue Swirl | 2009-12-04 21:44:44 +0100 |
commit | d05ac8faf57d5f0bc9310e41a3a9099397a778a5 (patch) | |
tree | d6b0ff6b75ff22d3e8e9b460749a799c68274f1b /hw/vmware_vga.c | |
parent | scsi: fix incorrect ?: use (diff) | |
download | qemu-d05ac8faf57d5f0bc9310e41a3a9099397a778a5.tar.gz qemu-d05ac8faf57d5f0bc9310e41a3a9099397a778a5.tar.xz qemu-d05ac8faf57d5f0bc9310e41a3a9099397a778a5.zip |
Add "static" to please Sparse
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/vmware_vga.c')
-rw-r--r-- | hw/vmware_vga.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index 24ea6205b0..240731a1b2 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -1063,7 +1063,7 @@ static int vmsvga_post_load(void *opaque, int version_id) return 0; } -const VMStateDescription vmstate_vmware_vga_internal = { +static const VMStateDescription vmstate_vmware_vga_internal = { .name = "vmware_vga_internal", .version_id = 0, .minimum_version_id = 0, @@ -1090,7 +1090,7 @@ const VMStateDescription vmstate_vmware_vga_internal = { } }; -const VMStateDescription vmstate_vmware_vga = { +static const VMStateDescription vmstate_vmware_vga = { .name = "vmware_vga", .version_id = 0, .minimum_version_id = 0, |