From f6eb5262a3176a97f4063f1c49a7d56545fcd53e Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sun, 23 Mar 2014 11:05:26 -0700 Subject: Experiments with mapping. --- src/base/abci/abc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/base/abci/abc.c') 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': -- cgit v1.2.3