Commit 4f2d2e0e by Alan Mishchenko

C++ compiler typecast problem.

parent 095cf5e8
...@@ -33442,7 +33442,7 @@ int Abc_CommandAbc9Mf( Abc_Frame_t * pAbc, int argc, char ** argv ) ...@@ -33442,7 +33442,7 @@ int Abc_CommandAbc9Mf( Abc_Frame_t * pAbc, int argc, char ** argv )
return 1; return 1;
} }
if ( pPars->fGenCnf ) 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 ); Abc_FrameUpdateGia( pAbc, pNew );
return 0; return 0;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment