Re: [Qemu-devel] [PATCH] w64: Fix compiler warning [-Wformat]

2012-08-11 Thread Stefan Weil
Am 11.08.2012 16:42, schrieb Blue Swirl: On Fri, Aug 10, 2012 at 7:45 PM, Stefan Weil wrote: Glib2 uses __printf__ in macro G_GNUC_PRINTF for printf like functions. For MinGW, we want __gnu_printf__ because we use POSIX format specifiers instead of the MS format specifiers. I get these warning

Re: [Qemu-devel] [PATCH] w64: Fix compiler warning [-Wformat]

2012-08-11 Thread Blue Swirl
On Fri, Aug 10, 2012 at 7:45 PM, Stefan Weil wrote: > Glib2 uses __printf__ in macro G_GNUC_PRINTF for printf like > functions. For MinGW, we want __gnu_printf__ because we use > POSIX format specifiers instead of the MS format specifiers. I get these warnings from glib: CCtrace/control.o I

[Qemu-devel] [PATCH] w64: Fix compiler warning [-Wformat]

2012-08-10 Thread Stefan Weil
Glib2 uses __printf__ in macro G_GNUC_PRINTF for printf like functions. For MinGW, we want __gnu_printf__ because we use POSIX format specifiers instead of the MS format specifiers. Signed-off-by: Stefan Weil --- configure |2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/conf