summaryrefslogtreecommitdiffstats
path: root/src/base/abci
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/abci')
-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 98bdb647..e1e68e3c 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -30407,9 +30407,9 @@ int Abc_CommandAbc9Kf( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( -1, "Command line switch \"-P\" should be followed by a positive integer.\n" );
goto usage;
}
- pPars->nProcNumMax = atoi(argv[globalUtilOptind]);
+ pPars->nProcNum = atoi(argv[globalUtilOptind]);
globalUtilOptind++;
- if ( pPars->nProcNumMax < 0 )
+ if ( pPars->nProcNum < 0 )
goto usage;
break;
case 'R':