qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [6417] Fix format warnings


From: malc
Subject: [Qemu-devel] [6417] Fix format warnings
Date: Sat, 24 Jan 2009 14:38:06 +0000

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') {






reply via email to

[Prev in Thread] Current Thread [Next in Thread]