diff options
Diffstat (limited to 'sim/common/sim-watch.c')
-rw-r--r-- | sim/common/sim-watch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/sim-watch.c b/sim/common/sim-watch.c index 022ca13..7f43071 100644 --- a/sim/common/sim-watch.c +++ b/sim/common/sim-watch.c @@ -101,7 +101,7 @@ do_watchpoint_delete (SIM_DESC sd, sim_watch_point *dead = (*entry); (*entry) = (*entry)->next; sim_events_deschedule (sd, dead->event); - zfree (dead); + free (dead); status = SIM_RC_OK; } else |