diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2009-12-13 16:45:47 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2009-12-13 19:47:12 +0100 |
commit | 251241dc90e66189dd78bdc68c34a2d6474b0230 (patch) | |
tree | 35a25722edbe21ba6d83f5a39842d027e22d7cff /hw | |
parent | 03a23e5c6ea4ce318a430b23f7dffbfebcd57ee2 (diff) |
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>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/s390-virtio.c | 2 |
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, |