diff mbox

s390: typo fix

Message ID 20091213144547.GA11013@redhat.com
State New
Headers show

Commit Message

Michael S. Tsirkin Dec. 13, 2009, 2:45 p.m. UTC
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>
---
 hw/s390-virtio.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Alexander Graf Dec. 13, 2009, 5:30 p.m. UTC | #1
On 13.12.2009, at 15:45, Michael S. Tsirkin wrote:

> 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>

Ouch. Thanks for the catch!

Signed-off-by: Alexander Graf <agraf@suse.de>

Alex
diff mbox

Patch

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,