From a318e7ea3dcc7b0344c9e48d7b580de5f9c6db88 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Thu, 25 Jul 2019 09:33:36 +0700 Subject: Fixing some update gcc. --- src/base/abci/abcExact.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/abci/abcExact.c b/src/base/abci/abcExact.c index 5c5055d1..42cf11c5 100644 --- a/src/base/abci/abcExact.c +++ b/src/base/abci/abcExact.c @@ -388,7 +388,7 @@ static inline Ses_Store_t * Ses_StoreAlloc( int nBTLimit, int fMakeAIG, int fVer pStore->fMakeAIG = fMakeAIG; pStore->fVerbose = fVerbose; pStore->nBTLimit = nBTLimit; - memset( pStore->pEntries, 0, sizeof(char)*SES_STORE_TABLE_SIZE ); + memset( pStore->pEntries, 0, sizeof(pStore->pEntries) ); pStore->pSat = sat_solver_new(); -- cgit v1.2.3