From 927b4013aef4a55885924451e45dd4f2fc24367f Mon Sep 17 00:00:00 2001 From: ths Date: Thu, 2 Oct 2008 17:34:21 +0000 Subject: [PATCH] Add missing parenthesis in qemu_ram_alloc() Signed-off-by: Thomas Petazzoni git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5392 c046a42c-6fe2-441c-8c8c-71466251a162 --- exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec.c b/exec.c index 4fb3aee..8f250ac 100644 --- a/exec.c +++ b/exec.c @@ -2271,7 +2271,7 @@ ram_addr_t qemu_ram_alloc(ram_addr_t size) { ram_addr_t addr; if ((phys_ram_alloc_offset + size) > phys_ram_size) { - fprintf(stderr, "Not enough memory (requested_size = %" PRIu64 ", max memory = %" PRIu64 "\n", + fprintf(stderr, "Not enough memory (requested_size = %" PRIu64 ", max memory = %" PRIu64 ")\n", (uint64_t)size, (uint64_t)phys_ram_size); abort(); } -- 2.7.4