summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 5f100fb0..cb3e1f1e 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -4327,7 +4327,7 @@ int Abc_CommandMfs( Abc_Frame_t * pAbc, int argc, char ** argv )
}
pPars->nFanoutsMax = atoi(argv[globalUtilOptind]);
globalUtilOptind++;
- if ( pPars->nFanoutsMax < 1 )
+ if ( pPars->nFanoutsMax < 0 )
goto usage;
break;
case 'D':
@@ -4496,7 +4496,7 @@ int Abc_CommandMfs2( Abc_Frame_t * pAbc, int argc, char ** argv )
}
pPars->nFanoutMax = atoi(argv[globalUtilOptind]);
globalUtilOptind++;
- if ( pPars->nFanoutMax < 1 )
+ if ( pPars->nFanoutMax < 0 )
goto usage;
break;
case 'D':