From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55801) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T4q2b-0007fM-5I for qemu-devel@nongnu.org; Fri, 24 Aug 2012 05:18:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T4q2Z-0001Zn-Vb for qemu-devel@nongnu.org; Fri, 24 Aug 2012 05:18:57 -0400 Received: from qmta11.emeryville.ca.mail.comcast.net ([76.96.27.211]:51056) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T4q2Z-0001Zg-PP for qemu-devel@nongnu.org; Fri, 24 Aug 2012 05:18:55 -0400 From: Matthew Ogilvie Date: Fri, 24 Aug 2012 03:13:54 -0600 Message-Id: <1345799636-9115-2-git-send-email-mmogilvi_qemu@miniinfo.net> In-Reply-To: <1345799636-9115-1-git-send-email-mmogilvi_qemu@miniinfo.net> References: <503714B0.1020404@web.de> <1345799636-9115-1-git-send-email-mmogilvi_qemu@miniinfo.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 1/3] debug printf (cirrus_vga): fixup unintended format change List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Jan Kiszka , Matthew Ogilvie I unintentionally dropped an "02" from one of the format strings in commit 145c7c880ff520a9, as noted by Andreas Färber . Signed-off-by: Matthew Ogilvie --- 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