diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-07-11 19:32:26 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-07-11 19:32:26 -0700 |
commit | 494ca7156cd159433731a092add772d0033de20d (patch) | |
tree | 1614ac9ef3b99517f6b8a467f62cf255c5fe4ae6 /src/base/pla | |
parent | 0d09071f141cf1a7d48493c66e329f00dbfe5e91 (diff) | |
download | abc-494ca7156cd159433731a092add772d0033de20d.tar.gz abc-494ca7156cd159433731a092add772d0033de20d.tar.bz2 abc-494ca7156cd159433731a092add772d0033de20d.zip |
Compiler warning.
Diffstat (limited to 'src/base/pla')
-rw-r--r-- | src/base/pla/plaSimple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/pla/plaSimple.c b/src/base/pla/plaSimple.c index 80254ba1..8782d6f7 100644 --- a/src/base/pla/plaSimple.c +++ b/src/base/pla/plaSimple.c @@ -44,7 +44,7 @@ ABC_NAMESPACE_IMPL_START void Pla_ManDumpPla( Pla_Man_t * p, char * pFileName ) { // find the number of original variables - int nVarsInit = Pla_ManDivNum(p) ? Vec_IntCountZero(&p->vDivs) : Pla_ManInNum(p); + //int nVarsInit = Pla_ManDivNum(p) ? Vec_IntCountZero(&p->vDivs) : Pla_ManInNum(p); FILE * pFile = fopen( pFileName, "wb" ); if ( pFile == NULL ) printf( "Cannot open file \"%s\" for writing.\n", pFileName ); |