From 8b26084e3ca98d38370f86f04df7e5e9729f417b Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Thu, 29 May 2014 10:47:50 -0700 Subject: Compiler warnings. --- src/misc/extra/extraUtilSupp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/misc/extra/extraUtilSupp.c') diff --git a/src/misc/extra/extraUtilSupp.c b/src/misc/extra/extraUtilSupp.c index c42a35f6..a2e089bb 100644 --- a/src/misc/extra/extraUtilSupp.c +++ b/src/misc/extra/extraUtilSupp.c @@ -77,7 +77,7 @@ void Vec_IntUniqueProfile( Vec_Int_t * vData, int * pTable, int * pNexts, int Ta printf( "%d\n", Counter ); for ( Key = pTable[i]; Key != -1; Key = pNexts[Key] ) { - Extra_PrintBinary( stdout, Vec_IntEntryP(vData, Key*nIntSize), 40 ), printf( "\n" ); + Extra_PrintBinary( stdout, (unsigned *)Vec_IntEntryP(vData, Key*nIntSize), 40 ), printf( "\n" ); // Vec_IntUniqueHashKeyDebug( (unsigned char *)Vec_IntEntryP(vData, Key*nIntSize), 4*nIntSize, TableMask ); } } @@ -316,7 +316,7 @@ void Abc_SuppPrintMask( word uMask, int nBits ) { int i; for ( i = 0; i < nBits; i++ ) - printf( "%d", (uMask >> i) & 1 ); + printf( "%d", (int)((uMask >> i) & 1) ); printf( "\n" ); } void Abc_SuppGenProfile( Vec_Wrd_t * p, int nBits, int * pCounts ) @@ -646,7 +646,7 @@ int Abc_SuppSolve( Vec_Wrd_t * p, int nVars ) ***********************************************************************/ void Abc_SuppReadMinTest( char * pFileName ) { - int fVerbose = 0; +// int fVerbose = 0; abctime clk = Abc_Clock(); // word Matrix[64]; int nVars, nVarsMin; -- cgit v1.2.3