summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2019-07-25 09:33:36 +0700
committerAlan Mishchenko <alanmi@berkeley.edu>2019-07-25 09:33:36 +0700
commita318e7ea3dcc7b0344c9e48d7b580de5f9c6db88 (patch)
tree4340f3773184da39e5caa6fbe7bdf0668e35e002 /src
parentee1bd8f0bee0678a289e086676adad2f35e3e2ae (diff)
downloadabc-a318e7ea3dcc7b0344c9e48d7b580de5f9c6db88.tar.gz
abc-a318e7ea3dcc7b0344c9e48d7b580de5f9c6db88.tar.bz2
abc-a318e7ea3dcc7b0344c9e48d7b580de5f9c6db88.zip
Fixing some update gcc.
Diffstat (limited to 'src')
-rw-r--r--src/base/abci/abcExact.c2
1 files changed, 1 insertions, 1 deletions
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();