From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DNEzm-0003Ft-IZ for qemu-devel@nongnu.org; Sun, 17 Apr 2005 14:59:51 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DNEzT-000372-DE for qemu-devel@nongnu.org; Sun, 17 Apr 2005 14:59:35 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DNEzS-00032g-Tz for qemu-devel@nongnu.org; Sun, 17 Apr 2005 14:59:30 -0400 Received: from [195.3.96.102] (helo=email.aon.at) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DNEtZ-0000uG-Ky for qemu-devel@nongnu.org; Sun, 17 Apr 2005 14:53:25 -0400 Received: from m1105p001.adsl.highway.telekom.at (HELO s37.loc) ([80.121.10.1]) (envelope-sender ) by smarthub71.highway.telekom.at (qmail-ldap-1.03) with SMTP for ; 17 Apr 2005 18:51:59 -0000 Received: from cow by s37.loc with local (Exim 4.50) id 1DNEsC-0004Sg-Ri for qemu-devel@nongnu.org; Sun, 17 Apr 2005 20:52:00 +0200 Date: Sun, 17 Apr 2005 20:52:00 +0200 From: Bernhard Fischer Message-ID: <20050417185200.GF15688@aon.at> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="YiEDa0DAkWCtVeE4" Content-Disposition: inline Subject: [Qemu-devel] compiler error in CONFIG_S3VGA Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --YiEDa0DAkWCtVeE4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, qemu/hw/vga.c: typo: s/uinr32_t/uint32_t/ Thank you, --YiEDa0DAkWCtVeE4 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="qemu.typedef_typo_in_DEBUG.diff" diff -X excl -rduNp qemu.oorig/hw/vga.c qemu/hw/vga.c --- qemu.oorig/hw/vga.c 2005-02-10 23:00:27.000000000 +0100 +++ qemu/hw/vga.c 2005-04-17 02:47:10.000000000 +0200 @@ -956,7 +956,7 @@ static void vga_get_offsets(VGAState *s, line_offset = s->cr[0x13]; #ifdef CONFIG_S3VGA { - uinr32_t v; + uint32_t v; v = (s->cr[0x51] >> 4) & 3; /* S3 extension */ if (v == 0) v = (s->cr[0x43] >> 2) & 1; /* S3 extension */ --YiEDa0DAkWCtVeE4--