summaryrefslogtreecommitdiffstats
path: root/src/misc/st
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2007-01-10 08:01:00 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2007-01-10 08:01:00 -0800
commit8dfe404863427d5e7b18d055ffd78b453835f959 (patch)
treef0efcc544e0501aa6477948744e4d2788a4fb965 /src/misc/st
parentbe6a484a997a8477d4c3b03c17f798c1b0061bf1 (diff)
downloadabc-8dfe404863427d5e7b18d055ffd78b453835f959.tar.gz
abc-8dfe404863427d5e7b18d055ffd78b453835f959.tar.bz2
abc-8dfe404863427d5e7b18d055ffd78b453835f959.zip
Version abc70110
Diffstat (limited to 'src/misc/st')
-rw-r--r--src/misc/st/stmm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc/st/stmm.c b/src/misc/st/stmm.c
index c9b2320b..99485c23 100644
--- a/src/misc/st/stmm.c
+++ b/src/misc/st/stmm.c
@@ -105,7 +105,7 @@ stmm_free_table (table)
// no need to deallocate entries because they are in the memory manager now
// added by alanmi
if ( table->pMemMan )
- Extra_MmFixedStop (table->pMemMan, 0);
+ Extra_MmFixedStop (table->pMemMan);
FREE (table->bins);
FREE (table);
}
@@ -446,7 +446,7 @@ stmm_copy (old_table)
}
}
*/
- Extra_MmFixedStop (new_table->pMemMan, 0);
+ Extra_MmFixedStop (new_table->pMemMan);
FREE (new_table->bins);
FREE (new_table);