Re: [Qemu-devel] [PATCH] block: fix a warning and possible truncation

2010-06-15 Thread Kevin Wolf
Am 15.06.2010 11:52, schrieb Alexander Graf: > > Am 14.06.2010 um 20:55 schrieb Blue Swirl : > >> Fix a warning from OpenBSD gcc (3.3.5 (propolice)): >> /src/qemu/block.c: In function `bdrv_info_stats_bs': >> /src/qemu/block.c:1548: warning: long long int format, long unsigned >> int arg (arg 6)

Re: [Qemu-devel] [PATCH] block: fix a warning and possible truncation

2010-06-15 Thread Alexander Graf
Am 14.06.2010 um 20:55 schrieb Blue Swirl : Fix a warning from OpenBSD gcc (3.3.5 (propolice)): /src/qemu/block.c: In function `bdrv_info_stats_bs': /src/qemu/block.c:1548: warning: long long int format, long unsigned int arg (arg 6) There may be also truncation effects. Signed-off-by: Blue S

[Qemu-devel] [PATCH] block: fix a warning and possible truncation

2010-06-14 Thread Blue Swirl
Fix a warning from OpenBSD gcc (3.3.5 (propolice)): /src/qemu/block.c: In function `bdrv_info_stats_bs': /src/qemu/block.c:1548: warning: long long int format, long unsigned int arg (arg 6) There may be also truncation effects. Signed-off-by: Blue Swirl --- Alternatively 'ULL' prefix could be ap