Fixing some update gcc.

This commit is contained in:
Alan Mishchenko
2019-07-24 11:44:28 +07:00
parent 0ca7e355f4
commit ee1bd8f0be
13 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -670,7 +670,7 @@ Vec_Str_t * Pdr_InvPrintStr( Vec_Int_t * vInv, Vec_Int_t * vCounts )
Vec_Int_t * vMap = Pdr_InvMap( vCounts );
int nVars = Vec_IntSize(vCounts) - Vec_IntCountZero(vCounts);
int i, k, * pCube, * pList = Vec_IntArray(vInv);
char * pBuffer = ABC_ALLOC( char, nVars );
char * pBuffer = ABC_ALLOC( char, (size_t)(unsigned)nVars );
for ( i = 0; i < nVars; i++ )
pBuffer[i] = '-';
Pdr_ForEachCube( pList, pCube, i )