From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:59563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXnr7-00022a-JX for qemu-devel@nongnu.org; Sat, 18 Jun 2011 01:14:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QXnr6-0008VT-Nk for qemu-devel@nongnu.org; Sat, 18 Jun 2011 01:14:01 -0400 Received: from mail-ww0-f41.google.com ([74.125.82.41]:39633) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXnr6-0008VM-Iz for qemu-devel@nongnu.org; Sat, 18 Jun 2011 01:14:00 -0400 Received: by wwi18 with SMTP id 18so284771wwi.4 for ; Fri, 17 Jun 2011 22:13:59 -0700 (PDT) MIME-Version: 1.0 From: Roy Tam Date: Sat, 18 Jun 2011 13:13:39 +0800 Message-ID: Content-Type: text/plain; charset=ISO-8859-1 Subject: [Qemu-devel] [PATCH] fix MinGW compilation when --enable-vnc-jpeg is specified List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel This patch fix conflicting types for 'INT32' in basetsd.h in including qemu-common.h first. Sign-off-by: Roy Tam -- diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c index 87fdf35..1591df0 100644 --- a/ui/vnc-enc-tight.c +++ b/ui/vnc-enc-tight.c @@ -28,6 +28,8 @@ #include "config-host.h" +#include "qemu-common.h" + #ifdef CONFIG_VNC_PNG #include #endif @@ -36,8 +38,6 @@ #include #endif -#include "qemu-common.h" - #include "bswap.h" #include "qint.h" #include "vnc.h"