From patchwork Thu Jun 6 16:27:20 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 249473 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)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id AA97B2C033F for ; Fri, 7 Jun 2013 02:28:13 +1000 (EST) Received: from localhost ([::1]:33136 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ukd2o-0006T4-FD for incoming@patchwork.ozlabs.org; Thu, 06 Jun 2013 12:28:10 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33202) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ukd2C-0006Qd-6t for qemu-devel@nongnu.org; Thu, 06 Jun 2013 12:27:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ukd2A-00073J-Vc for qemu-devel@nongnu.org; Thu, 06 Jun 2013 12:27:32 -0400 Received: from oxygen.pond.sub.org ([2a01:4f8:121:10e4::3]:41759) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ukd2A-00072Z-Ol for qemu-devel@nongnu.org; Thu, 06 Jun 2013 12:27:30 -0400 Received: from blackfin.pond.sub.org (p5B32B146.dip0.t-ipconnect.de [91.50.177.70]) by oxygen.pond.sub.org (Postfix) with ESMTPA id 5D31F9FE5F; Thu, 6 Jun 2013 18:27:27 +0200 (CEST) Received: by blackfin.pond.sub.org (Postfix, from userid 1000) id 8ACC7200B3; Thu, 6 Jun 2013 18:27:26 +0200 (CEST) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Thu, 6 Jun 2013 18:27:20 +0200 Message-Id: <1370536046-15125-2-git-send-email-armbru@redhat.com> X-Mailer: git-send-email 1.7.11.7 In-Reply-To: <1370536046-15125-1-git-send-email-armbru@redhat.com> References: <1370536046-15125-1-git-send-email-armbru@redhat.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a01:4f8:121:10e4::3 Cc: aliguori@us.ibm.com Subject: [Qemu-devel] [PATCH 1/7] error-report.h: Supply missing include 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 Missed in commit e5924d8. Signed-off-by: Markus Armbruster Reviewed-by: Laszlo Ersek --- include/qemu/error-report.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/qemu/error-report.h b/include/qemu/error-report.h index c902cc1..14c1719 100644 --- a/include/qemu/error-report.h +++ b/include/qemu/error-report.h @@ -14,6 +14,7 @@ #define QEMU_ERROR_H #include +#include "qemu/compiler.h" typedef struct Location { /* all members are private to qemu-error.c */