summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-04-09 14:15:43 +0000
committerAndrew Cagney <cagney@redhat.com>2000-04-09 14:15:43 +0000
commit32b17fa5f6278b2bd597de48318d0e0b10372376 (patch)
treedaafbc73b47dfc3e978b093849c09309ac095e6b
parent666c528e6189f63d883f26b9e23f9bd611e53233 (diff)
downloadgdb-32b17fa5f6278b2bd597de48318d0e0b10372376.tar.gz
Fix printf botch.
-rw-r--r--sim/mips/ChangeLog4
-rw-r--r--sim/mips/interp.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog
index af9985b1ec3..799159cc3e6 100644
--- a/sim/mips/ChangeLog
+++ b/sim/mips/ChangeLog
@@ -1,3 +1,7 @@
+Mon Apr 10 00:07:09 2000 Andrew Cagney <cagney@b1.cygnus.com>
+
+ * interp.c (decode_coproc): Output long using %lx and not %s.
+
2000-03-21 Frank Ch. Eigler <fche@redhat.com>
* interp.c (sim_open): Sort & extend dummy memory regions for
diff --git a/sim/mips/interp.c b/sim/mips/interp.c
index 0d0cb623327..df58a3b7334 100644
--- a/sim/mips/interp.c
+++ b/sim/mips/interp.c
@@ -3231,8 +3231,8 @@ decode_coproc (SIM_DESC sd,
/* 30 = ErrorEPC R4000 VR4100 VR4300 */
if (STATE_VERBOSE_P(SD))
sim_io_eprintf (SD,
- "Warning: PC 0x%s:interp.c decode_coproc DEADC0DE\n",
- (unsigned)cia);
+ "Warning: PC 0x%lx:interp.c decode_coproc DEADC0DE\n",
+ (unsigned long)cia);
GPR[rt] = 0xDEADC0DE; /* CPR[0,rd] */
/* CPR[0,rd] = GPR[rt]; */
default: