* [PATCH] qemu: fix formatting mismatch in qemu_ram_alloc
@ 2007-11-22 7:07 Carlo Marcelo Arenas Belon
2007-11-22 14:19 ` Avi Kivity
0 siblings, 1 reply; 2+ messages in thread
From: Carlo Marcelo Arenas Belon @ 2007-11-22 7:07 UTC (permalink / raw)
To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
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 <carenas-kLeDWSohozoJb6fo7hG9ng@public.gmane.org>
---
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/
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] qemu: fix formatting mismatch in qemu_ram_alloc
2007-11-22 7:07 [PATCH] qemu: fix formatting mismatch in qemu_ram_alloc Carlo Marcelo Arenas Belon
@ 2007-11-22 14:19 ` Avi Kivity
0 siblings, 0 replies; 2+ messages in thread
From: Avi Kivity @ 2007-11-22 14:19 UTC (permalink / raw)
To: Carlo Marcelo Arenas Belon; +Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Carlo Marcelo Arenas Belon wrote:
> 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)
>
>
Applied, thanks.
--
error compiling committee.c: too many arguments to function
-------------------------------------------------------------------------
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/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-11-22 14:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-22 7:07 [PATCH] qemu: fix formatting mismatch in qemu_ram_alloc Carlo Marcelo Arenas Belon
2007-11-22 14:19 ` Avi Kivity
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox