From ebf10fdc33fbd7b965c71d408ef31bff18013dc1 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sat, 31 May 2014 12:03:35 -0700 Subject: Allow delay increase to be negative in 'mfs2'. --- src/base/abci/abc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/base/abci/abc.c') diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index 1cdd493a..c0e85f25 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -4657,7 +4657,7 @@ int Abc_CommandMfs2( Abc_Frame_t * pAbc, int argc, char ** argv ) } pPars->nGrowthLevel = atoi(argv[globalUtilOptind]); globalUtilOptind++; - if ( pPars->nGrowthLevel < 0 || pPars->nGrowthLevel > ABC_INFINITY ) + if ( pPars->nGrowthLevel < -ABC_INFINITY || pPars->nGrowthLevel > ABC_INFINITY ) goto usage; break; case 'C': -- cgit v1.2.3