Commit 012a70458f7e6ab43c9427853081bcae7256f7aa
1 parent
ee600be6
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
Showing
1 changed file
with
1 additions
and
1 deletions
exec.c
... | ... | @@ -2271,7 +2271,7 @@ ram_addr_t qemu_ram_alloc(ram_addr_t size) |
2271 | 2271 | { |
2272 | 2272 | ram_addr_t addr; |
2273 | 2273 | if ((phys_ram_alloc_offset + size) > phys_ram_size) { |
2274 | - fprintf(stderr, "Not enough memory (requested_size = %" PRIu64 ", max memory = %" PRIu64 "\n", | |
2274 | + fprintf(stderr, "Not enough memory (requested_size = %" PRIu64 ", max memory = %" PRIu64 ")\n", | |
2275 | 2275 | (uint64_t)size, (uint64_t)phys_ram_size); |
2276 | 2276 | abort(); |
2277 | 2277 | } | ... | ... |