From: Gerd Hoffmann Date: Wed, 9 Jan 2013 09:17:08 +0000 (+0100) Subject: pixman: fix warning X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=092bb30;p=qemu.git pixman: fix warning Cc: afaerber@suse.de Cc: agraf@suse.de Signed-off-by: Gerd Hoffmann Signed-off-by: Blue Swirl --- diff --git a/include/ui/qemu-pixman.h b/include/ui/qemu-pixman.h index 3c05c83a7c..016fd87726 100644 --- a/include/ui/qemu-pixman.h +++ b/include/ui/qemu-pixman.h @@ -6,7 +6,14 @@ #ifndef QEMU_PIXMAN_H #define QEMU_PIXMAN_H +/* pixman-0.16.0 headers have a redundant declaration */ +#ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE +#pragma GCC diagnostic ignored "-Wredundant-decls" +#endif #include +#ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE +#pragma GCC diagnostic error "-Wredundant-decls" +#endif #include "console.h"