summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-02 17:34:21 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-02 17:34:21 +0000
commit012a70458f7e6ab43c9427853081bcae7256f7aa (patch)
tree28c2c8617f4f5b1279a4cf250b4dbf6eb4ffea55 /exec.c
parentee600be6a6379697d04673fd9ab10b66732b42e1 (diff)
downloadqemu-012a70458f7e6ab43c9427853081bcae7256f7aa.tar.gz
Add missing parenthesis in qemu_ram_alloc()
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5392 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec.c b/exec.c
index 4fb3aee452..8f250ac6cd 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();
}