From e4ea5e2d0e0e4c5188ab45b66f3195062ae059dc Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 13 Jun 2011 23:01:53 +0200 Subject: error framework: Fix compilation for w32/w64 The declaration of function error_set() should use macro GCC_FMT_ATTR instead of gcc's format printf attribute. For w32/w64, both declarations are different and GCC_FMT_ATTR is needed. Compilation for w64 even failed with the original code because mingw64 defines a macro for printf. GCC_FMT_ATTR requires qemu-common.h, so add it in error.c (it's also included by error_int.h but too late). Remove assert.h which is included by qemu-common.h. Cc: Luiz Capitulino Cc: Anthony Liguori Signed-off-by: Stefan Weil Signed-off-by: Luiz Capitulino --- error.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'error.h') diff --git a/error.h b/error.h index 003c855..0f92a6f 100644 --- a/error.h +++ b/error.h @@ -25,8 +25,7 @@ typedef struct Error Error; * Currently, qerror.h defines these error formats. This function is not * meant to be used outside of QEMU. */ -void error_set(Error **err, const char *fmt, ...) - __attribute__((format(printf, 2, 3))); +void error_set(Error **err, const char *fmt, ...) GCC_FMT_ATTR(2, 3); /** * Returns true if an indirect pointer to an error is pointing to a valid -- cgit v1.1