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/vec/vecPtr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/misc/vec/vecPtr.h') diff --git a/src/misc/vec/vecPtr.h b/src/misc/vec/vecPtr.h index 6fc5109b..3f958b6f 100644 --- a/src/misc/vec/vecPtr.h +++ b/src/misc/vec/vecPtr.h @@ -785,7 +785,7 @@ static inline void Vec_PtrDoubleSimInfo( Vec_Ptr_t * vInfo ) vInfo->pArray = vInfoNew->pArray; vInfo->nSize *= 2; vInfo->nCap *= 2; - // ABC_FREE the old array + // free the old array vInfoNew->pArray = NULL; ABC_FREE( vInfoNew ); } @@ -815,7 +815,7 @@ static inline void Vec_PtrReallocSimInfo( Vec_Ptr_t * vInfo ) // replace the array ABC_FREE( vInfo->pArray ); vInfo->pArray = vInfoNew->pArray; - // ABC_FREE the old array + // free the old array vInfoNew->pArray = NULL; ABC_FREE( vInfoNew ); } -- cgit v1.2.3