qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [5392] Add missing parenthesis in qemu_ram_alloc()


From: Thiemo Seufer
Subject: [Qemu-devel] [5392] Add missing parenthesis in qemu_ram_alloc()
Date: Thu, 02 Oct 2008 17:34:22 +0000

Revision: 5392
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5392
Author:   ths
Date:     2008-10-02 17:34:21 +0000 (Thu, 02 Oct 2008)

Log Message:
-----------
Add missing parenthesis in qemu_ram_alloc()

Signed-off-by: Thomas Petazzoni <address@hidden>

Modified Paths:
--------------
    trunk/exec.c

Modified: trunk/exec.c
===================================================================
--- trunk/exec.c        2008-10-01 22:01:37 UTC (rev 5391)
+++ trunk/exec.c        2008-10-02 17:34:21 UTC (rev 5392)
@@ -2271,7 +2271,7 @@
 {
     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();
     }






reply via email to

[Prev in Thread] Current Thread [Next in Thread]