summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-01-22 13:13:30 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2015-01-22 13:13:30 -0800
commit674622a3c0be8704e0d1243248dfc8b957846013 (patch)
treebcf528315e44246239721fe588b0bd81ce0f270a /src
parentcf83242458f1d2fcd3484326180277b1d14d5867 (diff)
downloadabc-674622a3c0be8704e0d1243248dfc8b957846013.tar.gz
abc-674622a3c0be8704e0d1243248dfc8b957846013.tar.bz2
abc-674622a3c0be8704e0d1243248dfc8b957846013.zip
Bug fix in &cone (not able to extract the last PO).
Diffstat (limited to 'src')
-rw-r--r--src/base/abci/abc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index fde8c09d..9dea1d03 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -35080,7 +35080,7 @@ int Abc_CommandAbc9Cone( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_FrameUpdateGia( pAbc, pTemp );
return 0;
}
- if ( iOutNum < 0 || iOutNum + nOutRange >= Gia_ManPoNum(pAbc->pGia) )
+ if ( iOutNum < 0 || iOutNum + nOutRange > Gia_ManPoNum(pAbc->pGia) )
{
Abc_Print( -1, "Abc_CommandAbc9Cone(): Range of outputs to extract is incorrect.\n" );
return 1;