diff options
Diffstat (limited to 'src/aig/cnf/cnfPost.c')
-rw-r--r-- | src/aig/cnf/cnfPost.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/aig/cnf/cnfPost.c b/src/aig/cnf/cnfPost.c index 988275b2..f7491889 100644 --- a/src/aig/cnf/cnfPost.c +++ b/src/aig/cnf/cnfPost.c @@ -20,6 +20,9 @@ #include "cnf.h" +ABC_NAMESPACE_IMPL_START + + //////////////////////////////////////////////////////////////////////// /// DECLARATIONS /// //////////////////////////////////////////////////////////////////////// @@ -143,7 +146,7 @@ void Cnf_ManFreeCuts( Cnf_Man_t * p ) Aig_ManForEachObj( p->pManAig, pObj, i ) if ( pObj->pData ) { - Cnf_CutFree( pObj->pData ); + Cnf_CutFree( (Cnf_Cut_t *)pObj->pData ); pObj->pData = NULL; } } @@ -231,3 +234,5 @@ void Cnf_ManPostprocess( Cnf_Man_t * p ) //////////////////////////////////////////////////////////////////////// +ABC_NAMESPACE_IMPL_END + |