summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael S. Tsirkin2009-12-13 15:45:47 +0100
committerAurelien Jarno2009-12-13 19:44:07 +0100
commitcf708987d7df69a5c72db8ba587e448a1bd02587 (patch)
tree8e561350093e650c09ac90a0fb3e9fc2d67b5a81
parents390: fix build on 32 bit host (diff)
downloadqemu-cf708987d7df69a5c72db8ba587e448a1bd02587.tar.gz
qemu-cf708987d7df69a5c72db8ba587e448a1bd02587.tar.xz
qemu-cf708987d7df69a5c72db8ba587e448a1bd02587.zip
s390: typo fix
s390 code has an obvious typo, which results in: hw/s390-virtio.c: At top level: hw/s390-virtio.c:249: error: request for member ‘no_vga’ in something not a structure or union Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Alexander Graf <agraf@suse.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
-rw-r--r--hw/s390-virtio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390-virtio.c b/hw/s390-virtio.c
index e71dbe61a5..b56788652e 100644
--- a/hw/s390-virtio.c
+++ b/hw/s390-virtio.c
@@ -245,7 +245,7 @@ static QEMUMachine s390_machine = {
.init = s390_init,
.no_serial = 1,
.no_parallel = 1,
- .use_virtcon = 1.
+ .use_virtcon = 1,
.no_vga = 1,
.max_cpus = 255,
.is_default = 1,