cur and buf are pointers, so the difference can be a long int on 64bit platforms.
Signed-off-by: Samuel Thibault <samuel.thiba...@ens-lyon.org> 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)); } #define EAT(c) do {\