From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1G7X3m-00083K-Bx for qemu-devel@nongnu.org; Mon, 31 Jul 2006 08:39:50 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1G7X3k-0007zW-FZ for qemu-devel@nongnu.org; Mon, 31 Jul 2006 08:39:49 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1G7X3k-0007zK-8I for qemu-devel@nongnu.org; Mon, 31 Jul 2006 08:39:48 -0400 Received: from [65.74.133.4] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1G7X6P-0007TM-4V for qemu-devel@nongnu.org; Mon, 31 Jul 2006 08:42:33 -0400 From: Paul Brook Subject: Re: [Qemu-devel] [PATCH] Fix warnings in mips_r4k.c Date: Mon, 31 Jul 2006 13:39:35 +0100 References: <44CDD962.7020900@gmail.com> In-Reply-To: <44CDD962.7020900@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200607311339.37105.paul@codesourcery.com> 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 On Monday 31 July 2006 11:20, Dirk Behme wrote: > Fix warnings > > hw/mips_r4k.c: In function =E2=80=98mips_r4kc_init=E2=80=99: > hw/mips_r4k.c:230: warning: pointer targets in passing > argument 3 of =E2=80=98load_elf=E2=80=99 differ in signedness > hw/mips_r4k.c:256: warning: pointer targets in passing > argument 1 of =E2=80=98strcpy=E2=80=99 differ in signedness Compile with -Wno-pointer-sign. gcc4 isn't really supported anyway. Paul