From patchwork Tue Mar 4 06:15:59 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Tokarev X-Patchwork-Id: 326149 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 9AB412C0142 for ; Tue, 4 Mar 2014 17:27:34 +1100 (EST) Received: from localhost ([::1]:43357 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKipA-0002Qb-FM for incoming@patchwork.ozlabs.org; Tue, 04 Mar 2014 01:27:32 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60425) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKimJ-0001Ao-FW for qemu-devel@nongnu.org; Tue, 04 Mar 2014 01:24:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WKimF-00049T-3A for qemu-devel@nongnu.org; Tue, 04 Mar 2014 01:24:35 -0500 Received: from isrv.corpit.ru ([86.62.121.231]:36263) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKimE-00048y-SB; Tue, 04 Mar 2014 01:24:31 -0500 Received: from tsrv.corpit.ru (tsrv.tls.msk.ru [192.168.177.2]) by isrv.corpit.ru (Postfix) with ESMTP id 4CB1940855; Tue, 4 Mar 2014 10:24:30 +0400 (MSK) Received: from tls.msk.ru (mjt.vpn.tls.msk.ru [192.168.177.99]) by tsrv.corpit.ru (Postfix) with SMTP id 7220F661; Tue, 4 Mar 2014 10:16:04 +0400 (MSK) Received: (nullmailer pid 16593 invoked by uid 1000); Tue, 04 Mar 2014 06:16:03 -0000 From: Michael Tokarev To: qemu-devel@nongnu.org Date: Tue, 4 Mar 2014 10:15:59 +0400 Message-Id: <1393913761-16516-12-git-send-email-mjt@msgid.tls.msk.ru> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1393913761-16516-1-git-send-email-mjt@msgid.tls.msk.ru> References: <1393913761-16516-1-git-send-email-mjt@msgid.tls.msk.ru> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 86.62.121.231 Cc: qemu-trivial@nongnu.org, Stefan Weil , Michael Tokarev Subject: [Qemu-devel] [PULL 11/13] qemu-img: Remove unneeded include files X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Stefan Weil There is no dependency on windows.h, and the standard include files are already included by qemu-common.h. Signed-off-by: Stefan Weil Reviewed-by: Paolo Bonzini Reviewed-by: Andreas Färber Signed-off-by: Michael Tokarev --- qemu-img.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/qemu-img.c b/qemu-img.c index 78fc868..886db88 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -32,12 +32,6 @@ #include "block/block_int.h" #include "block/qapi.h" #include -#include -#include - -#ifdef _WIN32 -#include -#endif typedef struct img_cmd_t { const char *name;