From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LSGJn-0003O1-En for qemu-devel@nongnu.org; Wed, 28 Jan 2009 14:43:23 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LSGJk-0003M4-M2 for qemu-devel@nongnu.org; Wed, 28 Jan 2009 14:43:22 -0500 Received: from [199.232.76.173] (port=56671 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LSGJk-0003Ly-II for qemu-devel@nongnu.org; Wed, 28 Jan 2009 14:43:20 -0500 Received: from main.gmane.org ([80.91.229.2]:47043 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LSGJk-0002Bb-5P for qemu-devel@nongnu.org; Wed, 28 Jan 2009 14:43:20 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1LSGJc-0002Fz-Cx for qemu-devel@nongnu.org; Wed, 28 Jan 2009 19:43:12 +0000 Received: from 204.147.152.1 ([204.147.152.1]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Jan 2009 19:43:12 +0000 Received: from void by 204.147.152.1 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Jan 2009 19:43:12 +0000 From: Consul Date: Wed, 28 Jan 2009 11:43:00 -0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: news Subject: [Qemu-devel] [PATCH] Silence half of warnings in MinGW 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 This patch suppresses a lot of mingw warnings like qemu-img.c:288: warning: format '%I64u' expects type 'unsigned int', but argument 2 has type 'uint64_t' signed-off-by: Alex Ivanov --- configure (revision 6466) +++ configure (working copy) @@ -573,6 +573,7 @@ if test "$mingw32" = "yes" ; then linux="no" EXESUF=".exe" + CFLAGS+=" -Wno-format" oss="no" linux_user="no" bsd_user="no"