Commit b259a62d by Alan Mishchenko

Compiler warnings.

parent a8c85d79
...@@ -54,7 +54,7 @@ extern void Abc_NtkInputMiniAig( void * pAbc, void * pMiniAig ); ...@@ -54,7 +54,7 @@ extern void Abc_NtkInputMiniAig( void * pAbc, void * pMiniAig );
extern void * Abc_NtkOutputMiniAig( void * pAbc ); extern void * Abc_NtkOutputMiniAig( void * pAbc );
// procedures to return the mapped network // procedures to return the mapped network
extern int * Abc_NtkOutputMiniMapping( Abc_Frame_t * pAbc ); extern int * Abc_NtkOutputMiniMapping( void * pAbc );
extern void Abc_NtkPrintMiniMapping( int * pArray ); extern void Abc_NtkPrintMiniMapping( int * pArray );
// procedures to access verifization status and a counter-example // procedures to access verifization status and a counter-example
......
...@@ -881,8 +881,9 @@ void Abc_NtkPrintMiniMapping( int * pArray ) ...@@ -881,8 +881,9 @@ void Abc_NtkPrintMiniMapping( int * pArray )
SeeAlso [] SeeAlso []
***********************************************************************/ ***********************************************************************/
int * Abc_NtkOutputMiniMapping( Abc_Frame_t * pAbc ) int * Abc_NtkOutputMiniMapping( void * pAbc0 )
{ {
Abc_Frame_t * pAbc = (Abc_Frame_t *)pAbc0;
Abc_Ntk_t * pNtk; Abc_Ntk_t * pNtk;
Vec_Int_t * vMapping; Vec_Int_t * vMapping;
int * pArray; int * pArray;
......
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