From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NJpkX-0002iu-1L for qemu-devel@nongnu.org; Sun, 13 Dec 2009 09:48:41 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NJpkS-0002i9-Eh for qemu-devel@nongnu.org; Sun, 13 Dec 2009 09:48:40 -0500 Received: from [199.232.76.173] (port=34554 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NJpkS-0002i6-85 for qemu-devel@nongnu.org; Sun, 13 Dec 2009 09:48:36 -0500 Received: from mx1.redhat.com ([209.132.183.28]:10515) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NJpkR-0001BT-NT for qemu-devel@nongnu.org; Sun, 13 Dec 2009 09:48:35 -0500 Date: Sun, 13 Dec 2009 16:45:47 +0200 From: "Michael S. Tsirkin" Message-ID: <20091213144547.GA11013@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH] s390: typo fix List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Anthony Liguori , agraf@suse.de 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 =E2=80=98no_vga=E2=80=99 = in something not a structure or union Signed-off-by: Michael S. Tsirkin --- 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 e71dbe6..b567886 100644 --- a/hw/s390-virtio.c +++ b/hw/s390-virtio.c @@ -245,7 +245,7 @@ static QEMUMachine s390_machine =3D { .init =3D s390_init, .no_serial =3D 1, .no_parallel =3D 1, - .use_virtcon =3D 1. + .use_virtcon =3D 1, .no_vga =3D 1, .max_cpus =3D 255, .is_default =3D 1, --=20 1.6.6.rc1.43.gf55cc