summaryrefslogtreecommitdiffstats
path: root/src/bdd/reo/reoProfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bdd/reo/reoProfile.c')
-rw-r--r--src/bdd/reo/reoProfile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bdd/reo/reoProfile.c b/src/bdd/reo/reoProfile.c
index 84a0bc19..8a48d809 100644
--- a/src/bdd/reo/reoProfile.c
+++ b/src/bdd/reo/reoProfile.c
@@ -132,8 +132,8 @@ void reoProfileWidthStart( reo_man * p )
int v;
// allocate and clean the storage for starting and stopping levels
- pWidthStart = ALLOC( int, p->nSupp + 1 );
- pWidthStop = ALLOC( int, p->nSupp + 1 );
+ pWidthStart = ABC_ALLOC( int, p->nSupp + 1 );
+ pWidthStop = ABC_ALLOC( int, p->nSupp + 1 );
memset( pWidthStart, 0, sizeof(int) * (p->nSupp + 1) );
memset( pWidthStop, 0, sizeof(int) * (p->nSupp + 1) );
@@ -200,8 +200,8 @@ void reoProfileWidthStart( reo_man * p )
// printf( "Level %2d: Width = %5d. Correct = %d.\n", v, Temp, p->pPlanes[v].statsWidth );
}
p->nWidthBeg = p->nWidthCur;
- free( pWidthStart );
- free( pWidthStop );
+ ABC_FREE( pWidthStart );
+ ABC_FREE( pWidthStop );
}
/**Function********************************************************************