Several suggested bug-fixes.

This commit is contained in:
Alan Mishchenko 2019-09-13 18:47:08 -07:00
parent 4256ad0acb
commit c3837b95c1
1 changed files with 1 additions and 1 deletions

View File

@ -650,7 +650,7 @@ int Gia_FormStrCount( char * pStr, int * pnVars, int * pnPars )
if ( *pnVars != FFTEST_MAX_VARS )
{ printf( "The number of input variables (%d) should be 2\n", *pnVars ); return 1; }
if ( *pnPars < 1 || *pnPars > FFTEST_MAX_PARS )
{ printf( "The number of parameters should be between 1 and %d\n", *pnPars ); return 1; }
{ printf( "The number of parameters should be between 1 and %d\n", FFTEST_MAX_PARS ); return 1; }
return 0;
}
void Gia_FormStrTransform( char * pStr, char * pForm )