diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2014-05-31 12:03:35 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2014-05-31 12:03:35 -0700 |
commit | ebf10fdc33fbd7b965c71d408ef31bff18013dc1 (patch) | |
tree | 0ddce5088282fb7a5fbf8d85c5d83f094a38d9ee /src | |
parent | 8b26084e3ca98d38370f86f04df7e5e9729f417b (diff) | |
download | abc-ebf10fdc33fbd7b965c71d408ef31bff18013dc1.tar.gz abc-ebf10fdc33fbd7b965c71d408ef31bff18013dc1.tar.bz2 abc-ebf10fdc33fbd7b965c71d408ef31bff18013dc1.zip |
Allow delay increase to be negative in 'mfs2'.
Diffstat (limited to 'src')
-rw-r--r-- | src/base/abci/abc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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': |