qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] baum: Fix build with debugging enabled


From: Samuel Thibault
Subject: Re: [Qemu-devel] [PATCH] baum: Fix build with debugging enabled
Date: Sun, 30 Aug 2015 16:50:29 +0200
User-agent: Mutt/1.5.21+34 (58baf7c9f32f) (2010-12-30)

Stefan Weil, le Sun 30 Aug 2015 16:38:25 +0200, a écrit :
> Am 30.08.2015 um 16:19 schrieb Samuel Thibault:
> > cur and buf are pointers, so the difference can be a long int on 64bit
> > platforms.
> >
> > Signed-off-by: Samuel Thibault <address@hidden>
> >
> > diff --git a/backends/baum.c b/backends/baum.c
> > index a69aaff..0fa8025 100644
> > --- a/backends/baum.c
> > +++ b/backends/baum.c
> > @@ -303,7 +303,7 @@ static int baum_eat_packet(BaumDriverState *baum, const 
> > uint8_t *buf, int len)
> >                  return 0;
> >              cur++;
> >          }
> > -        DPRINTF("Dropped %d bytes!\n", cur - buf);
> > +        DPRINTF("Dropped %ld bytes!\n", (long int) (cur - buf));
> 
> Using %td (and no type cast) would be better.

Ah, do we assume that %td is supported by libc?

Samuel



reply via email to

[Prev in Thread] Current Thread [Next in Thread]