aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sim/sh/ChangeLog4
-rw-r--r--sim/sh/interp.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog
index 91dfd34..0975e9e 100644
--- a/sim/sh/ChangeLog
+++ b/sim/sh/ChangeLog
@@ -1,3 +1,7 @@
+Fri Apr 18 13:33:09 1997 Doug Evans <dje@canuck.cygnus.com>
+
+ * interp.c (sim_resume): Fix argument to poll_quit.
+
Fri Apr 18 14:14:49 1997 Andrew Cagney <cagney@b1.cygnus.com>
* interp.c (sim_stop): New function.
diff --git a/sim/sh/interp.c b/sim/sh/interp.c
index 98f10e8..5a68dc9 100644
--- a/sim/sh/interp.c
+++ b/sim/sh/interp.c
@@ -970,7 +970,7 @@ sim_resume (sd, step, siggnal)
{
pollcount = 0;
if ((*callback->poll_quit) != NULL
- && (*callback->poll_quit) (sd))
+ && (*callback->poll_quit) (callback))
{
sim_stop (sd);
}