* [Qemu-devel] [6417] Fix format warnings
@ 2009-01-24 14:38 malc
0 siblings, 0 replies; only message in thread
From: malc @ 2009-01-24 14:38 UTC (permalink / raw)
To: qemu-devel
Revision: 6417
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6417
Author: malc
Date: 2009-01-24 14:38:06 +0000 (Sat, 24 Jan 2009)
Log Message:
-----------
Fix format warnings
Modified Paths:
--------------
trunk/qemu-img.c
Modified: trunk/qemu-img.c
===================================================================
--- trunk/qemu-img.c 2009-01-24 12:09:52 UTC (rev 6416)
+++ trunk/qemu-img.c 2009-01-24 14:38:06 UTC (rev 6417)
@@ -728,9 +728,9 @@
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') {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-01-24 14:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-24 14:38 [Qemu-devel] [6417] Fix format warnings malc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).