diff options
Diffstat (limited to 'sim/common/sim-cpu.c')
-rw-r--r-- | sim/common/sim-cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/sim-cpu.c b/sim/common/sim-cpu.c index 2f8dd81..5eebd99 100644 --- a/sim/common/sim-cpu.c +++ b/sim/common/sim-cpu.c @@ -62,7 +62,7 @@ sim_cpu_free_all (SIM_DESC sd) void sim_cpu_free (sim_cpu *cpu) { - zfree (cpu); + free (cpu); } /* PC utilities. */ |