qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 1/3] debug printf (cirrus_vga): fixup unintended for


From: Matthew Ogilvie
Subject: [Qemu-devel] [PATCH 1/3] debug printf (cirrus_vga): fixup unintended format change
Date: Fri, 24 Aug 2012 03:13:54 -0600

I unintentionally dropped an "02" from one of the format strings
in commit 145c7c880ff520a9, as noted by Andreas Färber <address@hidden>.

Signed-off-by: Matthew Ogilvie <address@hidden>
---

The "02" in debug code seems extremely low priority, but on the other
hand, there is no good reason to change it.

 hw/cirrus_vga.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/cirrus_vga.c b/hw/cirrus_vga.c
index 909899d..68c36f3 100644
--- a/hw/cirrus_vga.c
+++ b/hw/cirrus_vga.c
@@ -2055,7 +2055,7 @@ static void cirrus_vga_mem_write(void *opaque,
        }
     } else {
 #ifdef DEBUG_CIRRUS
-        printf("cirrus: mem_writeb " TARGET_FMT_plx " value %" PRIx64 "\n",
+        printf("cirrus: mem_writeb " TARGET_FMT_plx " value %02" PRIx64 "\n",
                addr, mem_value);
 #endif
     }
-- 
1.7.10.2.484.gcd07cc5




reply via email to

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