Skip to content

Commit

Permalink
Compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanminko committed Dec 23, 2024
1 parent 943bc01 commit e21399f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/aig/miniaig/ndr.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ static inline void Ndr_DataPushString( Ndr_Data_t * p, int ObjType, int Type, ch
{
//word Truth = (word)pFunc;
//Ndr_DataPushArray( p, Type, 2, (int *)&Truth );
Ndr_DataPushArray( p, Type, 2, (int *)&pFunc );
int nInts = (strlen(pFunc) + 1 + sizeof(int) - 1) / sizeof(int);
Ndr_DataPushArray( p, Type, nInts, (int *)&pFunc );
}
else
{
Expand Down
6 changes: 3 additions & 3 deletions src/base/abci/abc.c
Original file line number Diff line number Diff line change
Expand Up @@ -9147,9 +9147,9 @@ int Abc_CommandLutCas( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( -2, "\t-M <num> : the maximum number of LUTs in the cascade [default = %d]\n", nLutsMax );
Abc_Print( -2, "\t-I <num> : the number of iterations when looking for a solution [default = %d]\n", nIters );
Abc_Print( -2, "\t-S <num> : the random seed used to randimize solutions [default = %d]\n", Seed );
Abc_Print( -2, "\t-L <num> : the intrinsic LUT delay [default = %f]\n", fDelayLut );
Abc_Print( -2, "\t-W <num> : the routable wire delay [default = %f]\n", fDelayRoute );
Abc_Print( -2, "\t-D <num> : the non-routable wire delay [default = %f]\n", fDelayDirect );
Abc_Print( -2, "\t-L <num> : the intrinsic LUT delay [default = %d]\n", fDelayLut );
Abc_Print( -2, "\t-W <num> : the routable wire delay [default = %d]\n", fDelayRoute );
Abc_Print( -2, "\t-D <num> : the non-routable wire delay [default = %d]\n", fDelayDirect );
Abc_Print( -2, "\t-v : toggle verbose printout [default = %s]\n", fVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");
return 1;
Expand Down

0 comments on commit e21399f

Please sign in to comment.