From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:39542) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjzSu-0002nT-Aj for qemu-devel@nongnu.org; Thu, 21 Jul 2011 16:03:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QjzSt-00019D-4F for qemu-devel@nongnu.org; Thu, 21 Jul 2011 16:03:24 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38150) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjzSs-000198-TM for qemu-devel@nongnu.org; Thu, 21 Jul 2011 16:03:23 -0400 From: Luiz Capitulino Date: Thu, 21 Jul 2011 17:00:52 -0300 Message-Id: <1311278474-24336-4-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1311278474-24336-1-git-send-email-lcapitulino@redhat.com> References: <1311278474-24336-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 03/25] Error: Fix build when qemu-common.h is not included List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com Cc: Luiz Capitulino , qemu-devel@nongnu.org From: Luiz Capitulino Commit e4ea5e2d0e0e4c5188ab45b66f3195062ae059dc added the use of the macro GCC_FMT_ATTR to error.h, however compiler.h is not included by error.h This will cause a build error when files including error.h don't include qemu-common.h (or compiler.h). Not an issue today because the only file including it is json-parser.h and it does include qemu-common.h, but let's get it fixed. Signed-off-by: Luiz Capitulino --- error.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/error.h b/error.h index 0f92a6f..6361f40 100644 --- a/error.h +++ b/error.h @@ -12,6 +12,7 @@ #ifndef ERROR_H #define ERROR_H +#include "compiler.h" #include /** -- 1.7.6.233.gd79bc