summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-07-08 08:42:15 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-07-08 08:42:15 -0700
commit4f2d2e0e962a395174679def7cf4de217f559635 (patch)
treedc73cfec30011ad5f496c6763c57d79325594ae0
parent095cf5e8b6d0d3c5cc6dec3131c9b8fed9930c3e (diff)
downloadabc-4f2d2e0e962a395174679def7cf4de217f559635.tar.gz
abc-4f2d2e0e962a395174679def7cf4de217f559635.tar.bz2
abc-4f2d2e0e962a395174679def7cf4de217f559635.zip
C++ compiler typecast problem.
-rw-r--r--src/base/abci/abc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 015e84c3..bcbcd045 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -33442,7 +33442,7 @@ int Abc_CommandAbc9Mf( Abc_Frame_t * pAbc, int argc, char ** argv )
return 1;
}
if ( pPars->fGenCnf )
- Cnf_DataFree( pAbc->pGia->pData ), pAbc->pGia->pData = NULL;
+ Cnf_DataFree( (Cnf_Dat_t*)pAbc->pGia->pData ), pAbc->pGia->pData = NULL;
Abc_FrameUpdateGia( pAbc, pNew );
return 0;