On Sat, Oct 02, 2010 at 12:41:04PM +0200, Stefan Weil wrote: > According to ISO/IEC 9899:1999 7.19.6.1, > the correct length modifier for ptrdiff_t is 't', not 'z'. > > Cc: Blue Swirl <blauwir...@gmail.com> > Cc: Markus Armbruster <arm...@redhat.com> > Signed-off-by: Stefan Weil <w...@mail.berlios.de>
Applied both this one and the cris patch. Thanks > --- > target-microblaze/translate.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c > index 6c305d4..38149bb 100644 > --- a/target-microblaze/translate.c > +++ b/target-microblaze/translate.c > @@ -1516,7 +1516,7 @@ gen_intermediate_code_internal(CPUState *env, > TranslationBlock *tb, > #if DISAS_GNU > log_target_disas(pc_start, dc->pc - pc_start, 0); > #endif > - qemu_log("\nisize=%d osize=%zd\n", > + qemu_log("\nisize=%d osize=%td\n", > dc->pc - pc_start, gen_opc_ptr - gen_opc_buf); > } > #endif > -- > 1.7.1 > >