From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:47182) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qh0MA-00089H-1n for qemu-devel@nongnu.org; Wed, 13 Jul 2011 10:24:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qh0M6-0003oB-Q9 for qemu-devel@nongnu.org; Wed, 13 Jul 2011 10:24:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48816) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qh0M6-0003ne-90 for qemu-devel@nongnu.org; Wed, 13 Jul 2011 10:24:02 -0400 From: Luiz Capitulino Date: Wed, 13 Jul 2011 11:23:33 -0300 Message-Id: <1310567013-11058-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1310567013-11058-1-git-send-email-lcapitulino@redhat.com> References: <1310567013-11058-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 2/2] Error: Fix build when qemu-common.h is not included List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, mdroth@linux.vnet.ibm.com 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.134.gcf13f