aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sim/v850/ChangeLog4
-rw-r--r--sim/v850/simops.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog
index 15c1dee..cb20ad5 100644
--- a/sim/v850/ChangeLog
+++ b/sim/v850/ChangeLog
@@ -1,3 +1,7 @@
+2002-06-17 Andrew Cagney <cagney@redhat.com>
+
+ * simops.c (trace_result): Fix printf formatting.
+
2002-06-16 Andrew Cagney <ac131313@redhat.com>
* configure: Regenerated to track ../common/aclocal.m4 changes.
diff --git a/sim/v850/simops.c b/sim/v850/simops.c
index f6f43ee..9a83d07 100644
--- a/sim/v850/simops.c
+++ b/sim/v850/simops.c
@@ -211,7 +211,8 @@ trace_result (int has_result, unsigned32 result)
int i;
for (i = 0; i < trace_num_values; i++)
{
- sprintf (chp, "%*s0x%.8lx", SIZE_VALUES - 10, "", trace_values[i]);
+ sprintf (chp, "%*s0x%.8lx", SIZE_VALUES - 10, "",
+ (long) trace_values[i]);
chp = strchr (chp, '\0');
}
while (i++ < 3)