diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-24 14:38:06 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-24 14:38:06 +0000 |
commit | 4f94dc644e738f8cfa37160b6cae670334146e75 (patch) | |
tree | 1b08fdc2fff79912e1df8aaa589ed2f4ee405803 /qemu-img.c | |
parent | f2d81b33007d2ab53d4e90ba16f1326f3e81a12d (diff) |
Fix format warnings
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6417 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'qemu-img.c')
-rw-r--r-- | qemu-img.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu-img.c b/qemu-img.c index 41ff13b0e4..732f889649 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -728,9 +728,9 @@ static int img_info(int argc, char **argv) if (bdi.cluster_size != 0) printf("cluster_size: %d\n", bdi.cluster_size); if (bdi.highest_alloc) - printf("highest_alloc: %ld\n", bdi.highest_alloc); + printf("highest_alloc: %" PRId64 "\n", bdi.highest_alloc); if (bdi.num_free_bytes) - printf("num_free_bytes: %ld\n", bdi.num_free_bytes); + printf("num_free_bytes: %" PRId64 "\n", bdi.num_free_bytes); } bdrv_get_backing_filename(bs, backing_filename, sizeof(backing_filename)); if (backing_filename[0] != '\0') { |