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

2015-09-06 Thread Michael Tokarev
30.08.2015 18:12, Samuel Thibault wrote: > cur and buf are pointers, so the difference is a ptrdiff_t Applied to -trivial, thanks! /mjt

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

2015-08-30 Thread Stefan Weil
Am 30.08.2015 um 17:12 schrieb Samuel Thibault: > cur and buf are pointers, so the difference is a ptrdiff_t > > Signed-off-by: Samuel Thibault > > diff --git a/backends/baum.c b/backends/baum.c > index a69aaff..1f9288e 100644 > --- a/backends/baum.c > +++ b/backends/baum.c > @@ -303,7 +303,7 @@ s

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

2015-08-30 Thread Samuel Thibault
cur and buf are pointers, so the difference is a ptrdiff_t Signed-off-by: Samuel Thibault diff --git a/backends/baum.c b/backends/baum.c index a69aaff..1f9288e 100644 --- a/backends/baum.c +++ b/backends/baum.c @@ -303,7 +303,7 @@ static int baum_eat_packet(BaumDriverState *baum, const uint8_t

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

2015-08-30 Thread Stefan Weil
Am 30.08.2015 um 16:50 schrieb Samuel Thibault: > 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 >>> >>> di

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

2015-08-30 Thread Samuel Thibault
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 > > > > diff --git a/backends/baum.c b/backends/baum.c > > in

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

2015-08-30 Thread Stefan Weil
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 > > diff --git a/backends/baum.c b/backends/baum.c > index a69aaff..0fa8025 100644 > --- a/backends/baum.c > +++ b/backends/baum.

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

2015-08-30 Thread Samuel Thibault
cur and buf are pointers, so the difference can be a long int on 64bit platforms. Signed-off-by: Samuel Thibault 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