diff options
| author | Blue Swirl | 2010-10-30 18:46:27 +0200 |
|---|---|---|
| committer | Kevin Wolf | 2010-11-04 13:54:37 +0100 |
| commit | a31335863648d1e707f59296cffb74205aedba96 (patch) | |
| tree | 0e039e7f1fc8b74002c451983c990e92502c49e3 | |
| parent | qcow2: Invalidate cache after failed read (diff) | |
| download | qemu-a31335863648d1e707f59296cffb74205aedba96.tar.gz qemu-a31335863648d1e707f59296cffb74205aedba96.tar.xz qemu-a31335863648d1e707f59296cffb74205aedba96.zip | |
block: avoid a warning on 64 bit hosts with long as int64_t
When building on a 64 bit host which uses 'long' for int64_t,
GCC emits a warning:
CC block/blkverify.o
/src/qemu/block/blkverify.c: In function `blkverify_verify_readv':
/src/qemu/block/blkverify.c:304: warning: long long int format, long
unsigned int arg (arg 3)
Rework a77cffe7e916f4dd28f2048982ea2e0d98143b11 to avoid the warning.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
| -rw-r--r-- | block/blkverify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/blkverify.c b/block/blkverify.c index 0a8d691210..c7522b4093 100644 --- a/block/blkverify.c +++ b/block/blkverify.c @@ -300,8 +300,8 @@ static void blkverify_verify_readv(BlkverifyAIOCB *acb) { ssize_t offset = blkverify_iovec_compare(acb->qiov, &acb->raw_qiov); if (offset != -1) { - blkverify_err(acb, "contents mismatch in sector %lld", - acb->sector_num + (offset / BDRV_SECTOR_SIZE)); + blkverify_err(acb, "contents mismatch in sector %" PRId64, + acb->sector_num + (int64_t)(offset / BDRV_SECTOR_SIZE)); } } |
