Commit 7b7ebf91 by Alan Mishchenko

Compiler warning.

parent f6193c0d
......@@ -2081,7 +2081,7 @@ void Ivy_FraigPrintActivity( Ivy_FraigMan_t * p )
{
int i;
for ( i = 0; i < p->nSatVars; i++ )
printf( "%d %d ", i, p->pSat->activity[i] );
printf( "%d %d ", i, (int)p->pSat->activity[i] );
printf( "\n" );
}
......
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