The following patch complement 50096dbe4c8523d9855b0e2ee6f058a75e7942a3 to 
avoid a compilation warning because of a formatting mismatch after making
"size" long to allow for allocations bigger than 4GB and as can be seen by :

kvm-53/qemu/exec.c: In function `qemu_ram_alloc':
kvm-53/qemu/exec.c:2098: warning: unsigned int format, long unsigned int
arg (arg 3)

Signed-off-by: Carlo Marcelo Arenas Belon <[EMAIL PROTECTED]>
---
 qemu/exec.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/qemu/exec.c b/qemu/exec.c
index 7343c75..66b91b9 100644
--- a/qemu/exec.c
+++ b/qemu/exec.c
@@ -2094,7 +2094,7 @@ ram_addr_t qemu_ram_alloc(unsigned long size)
 {
     ram_addr_t addr;
     if ((phys_ram_alloc_offset + size) >= phys_ram_size) {
-        fprintf(stderr, "Not enough memory (requested_size = %u, max memory = 
%d)\n",
+        fprintf(stderr, "Not enough memory (requested_size = %lu, max memory = 
%d)\n",
                 size, phys_ram_size);
         abort();
     }
-- 
1.5.2.5


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel

Reply via email to