Re: [Qemu-devel] [PATCH 4/4] target-xxx: Use fprintf_function (format checking)

2010-11-01 Thread TeLeMan
-- SUN OF A BEACH On Mon, Nov 1, 2010 at 15:05, Stefan Weil wrote: > Am 01.11.2010 03:24, schrieb TeLeMan: >> >> On Sat, Oct 23, 2010 at 05:03, Stefan Weil wrote: >>> >>>    int eflags, i, nb; >>> @@ -335,9 +333,11 @@ void cpu_dump_state(CPUState *env, FILE *f, >>>                    (uint32_t

Re: [Qemu-devel] [PATCH 4/4] target-xxx: Use fprintf_function (format checking)

2010-11-01 Thread Stefan Weil
Am 01.11.2010 03:24, schrieb TeLeMan: On Sat, Oct 23, 2010 at 05:03, Stefan Weil wrote: int eflags, i, nb; @@ -335,9 +333,11 @@ void cpu_dump_state(CPUState *env, FILE *f, (uint32_t)env->cr[2], (uint32_t)env->cr[3], (uint32_t)env->

Re: [Qemu-devel] [PATCH 4/4] target-xxx: Use fprintf_function (format checking)

2010-10-31 Thread TeLeMan
On Sat, Oct 23, 2010 at 05:03, Stefan Weil wrote: >     int eflags, i, nb; > @@ -335,9 +333,11 @@ void cpu_dump_state(CPUState *env, FILE *f, >                     (uint32_t)env->cr[2], >                     (uint32_t)env->cr[3], >                     (uint32_t)env->cr[4]); > -        for(i = 0; i

[Qemu-devel] [PATCH 4/4] target-xxx: Use fprintf_function (format checking)

2010-10-22 Thread Stefan Weil
fprintf_function uses format checking with GCC_FMT_ATTR. Format errors were fixed in * target-i386/helper.c * target-mips/translate.c * target-ppc/translate.c Cc: Blue Swirl Signed-off-by: Stefan Weil --- cpu-all.h |8 +++- cpus.c|3 +--