* [Qemu-devel] [5393] Fix MXCC printf warning (based on patch by Robert Reif)
@ 2008-10-02 18:06 Blue Swirl
0 siblings, 0 replies; only message in thread
From: Blue Swirl @ 2008-10-02 18:06 UTC (permalink / raw)
To: qemu-devel
Revision: 5393
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5393
Author: blueswir1
Date: 2008-10-02 18:06:50 +0000 (Thu, 02 Oct 2008)
Log Message:
-----------
Fix MXCC printf warning (based on patch by Robert Reif)
Modified Paths:
--------------
trunk/target-sparc/op_helper.c
Modified: trunk/target-sparc/op_helper.c
===================================================================
--- trunk/target-sparc/op_helper.c 2008-10-02 17:34:21 UTC (rev 5392)
+++ trunk/target-sparc/op_helper.c 2008-10-02 18:06:50 UTC (rev 5393)
@@ -811,7 +811,7 @@
break;
}
DPRINTF_MXCC("asi = %d, size = %d, sign = %d, "
- "addr = %08x -> ret = %08x,"
+ "addr = %08x -> ret = %" PRIx64 ","
"addr = %08x\n", asi, size, sign, last_addr, ret, addr);
#ifdef DEBUG_MXCC
dump_mxcc(env);
@@ -1074,8 +1074,8 @@
size);
break;
}
- DPRINTF_MXCC("asi = %d, size = %d, addr = %08x, val = %08x\n", asi,
- size, addr, val);
+ DPRINTF_MXCC("asi = %d, size = %d, addr = %08x, val = %" PRIx64 "\n",
+ asi, size, addr, val);
#ifdef DEBUG_MXCC
dump_mxcc(env);
#endif
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-10-02 18:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-02 18:06 [Qemu-devel] [5393] Fix MXCC printf warning (based on patch by Robert Reif) Blue Swirl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).