diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2011-09-17 16:24:40 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2011-09-17 16:24:40 -0700 |
commit | c1edeccc60099469eebe140a2b84f3fadb7110a8 (patch) | |
tree | 72ff9b20aacf53ddd7decf71296a1037eb3bc991 /src/base/abci/abcIf.c | |
parent | 8248691d8441e22d19d645d738f92b59fb3c95da (diff) | |
download | abc-c1edeccc60099469eebe140a2b84f3fadb7110a8.tar.gz abc-c1edeccc60099469eebe140a2b84f3fadb7110a8.tar.bz2 abc-c1edeccc60099469eebe140a2b84f3fadb7110a8.zip |
64-bit portability changes.
Diffstat (limited to 'src/base/abci/abcIf.c')
-rw-r--r-- | src/base/abci/abcIf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/abci/abcIf.c b/src/base/abci/abcIf.c index 95ff6c4f..fcd4a368 100644 --- a/src/base/abci/abcIf.c +++ b/src/base/abci/abcIf.c @@ -1217,7 +1217,7 @@ void Abc_NtkRecreatePoDrivers( If_Man_t * p, Abc_Ntk_t * pNtkNew ) if ( numPo == ~0 ) continue; // get the node and the complemented bit - pFaninNew = Vec_PtrEntry( vDriversNew, numPo ); + pFaninNew = (Abc_Obj_t *)Vec_PtrEntry( vDriversNew, numPo ); fCompl = Vec_IntEntry( vDriverInvs, numPo ); if ( fCompl ) pFaninNew = Abc_NtkCreateNodeInv( pNtkNew, pFaninNew ); |