From: Michael S. Tsirkin Date: Sun, 13 Dec 2009 14:45:47 +0000 (+0200) Subject: s390: typo fix X-Git-Tag: TizenStudio_2.0_p2.3~6277 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed62c7d3fd9d5a67f7f08ff0dc5f145529b62a30;p=sdk%2Femulator%2Fqemu.git 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 Acked-by: Alexander Graf Signed-off-by: Aurelien Jarno --- diff --git a/hw/s390-virtio.c b/hw/s390-virtio.c index e71dbe6..b567886 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,