From patchwork Thu Nov 22 17:27:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 201093 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A890D2C008C for ; Fri, 23 Nov 2012 04:27:27 +1100 (EST) Received: from localhost ([::1]:56093 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TbaYf-0008A6-Me for incoming@patchwork.ozlabs.org; Thu, 22 Nov 2012 12:27:25 -0500 Received: from eggs.gnu.org ([208.118.235.92]:39973) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TbaXb-0006Ch-SL for qemu-devel@nongnu.org; Thu, 22 Nov 2012 12:26:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TbaXY-0007It-UI for qemu-devel@nongnu.org; Thu, 22 Nov 2012 12:26:19 -0500 Received: from mx1.redhat.com ([209.132.183.28]:11808) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TbaXY-0007I4-Mp for qemu-devel@nongnu.org; Thu, 22 Nov 2012 12:26:16 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qAMHQGwn018384 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 22 Nov 2012 12:26:16 -0500 Received: from blackpad.lan.raisama.net (vpn1-5-104.gru2.redhat.com [10.97.5.104]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id qAMHQFKG032199; Thu, 22 Nov 2012 12:26:15 -0500 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id CE62C203025; Thu, 22 Nov 2012 15:27:39 -0200 (BRST) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Thu, 22 Nov 2012 15:27:29 -0200 Message-Id: <1353605251-22218-7-git-send-email-ehabkost@redhat.com> In-Reply-To: <1353605251-22218-1-git-send-email-ehabkost@redhat.com> References: <1353605251-22218-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= Subject: [Qemu-devel] [PATCH 6/8] qlist.h: do not include qemu-common.h 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 I don't know why it was including it, as I don't see any code that depends on anything from qemu-common.h. Signed-off-by: Eduardo Habkost --- qlist.h | 1 - 1 file changed, 1 deletion(-) diff --git a/qlist.h b/qlist.h index ae776f9..7408947 100644 --- a/qlist.h +++ b/qlist.h @@ -15,7 +15,6 @@ #include "qobject.h" #include "qemu-queue.h" -#include "qemu-common.h" #include "qemu-queue.h" typedef struct QListEntry {