From 4f2d2e0e962a395174679def7cf4de217f559635 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Wed, 8 Jul 2015 08:42:15 -0700 Subject: C++ compiler typecast problem. --- src/base/abci/abc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3