From df6fdd1dffd8ce83dfc4a7868ebdd25241f8f24b Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Wed, 8 Apr 2009 08:01:00 -0700 Subject: Version abc90408 --- src/misc/hash/hashFlt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/misc/hash/hashFlt.h') diff --git a/src/misc/hash/hashFlt.h b/src/misc/hash/hashFlt.h index 43b9dd7f..4b9951cb 100644 --- a/src/misc/hash/hashFlt.h +++ b/src/misc/hash/hashFlt.h @@ -309,7 +309,7 @@ static inline void Hash_FltFree( Hash_Flt_t *p ) { int bin; Hash_Flt_Entry_t *pEntry; - // ABC_FREE bins + // free bins for(bin = 0; bin < p->nBins; bin++) { pEntry = p->pArray[bin]; while(pEntry) { @@ -318,7 +318,7 @@ static inline void Hash_FltFree( Hash_Flt_t *p ) { } } - // ABC_FREE hash + // free hash ABC_FREE( p->pArray ); ABC_FREE( p ); } -- cgit v1.2.3