mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Fix more harmless compiler warnings in lsm1, seen with MSVC 2015.
FossilOrigin-Name: 0f1307f1f5638c1c4f1ce2b89cdef7ce8b76dc2a38685cd1ca152cde9e8727da
This commit is contained in:
@ -1017,9 +1017,9 @@ int lsmCheckpointDeserialize(
|
||||
pDb->pEnv, sizeof(FreelistEntry)*nFree, &rc
|
||||
);
|
||||
if( rc==LSM_OK ){
|
||||
int i;
|
||||
for(i=0; i<nFree; i++){
|
||||
FreelistEntry *p = &pNew->freelist.aEntry[i];
|
||||
int j;
|
||||
for(j=0; j<nFree; j++){
|
||||
FreelistEntry *p = &pNew->freelist.aEntry[j];
|
||||
p->iBlk = aCkpt[iIn++];
|
||||
p->iId = ((i64)(aCkpt[iIn])<<32) + aCkpt[iIn+1];
|
||||
iIn += 2;
|
||||
|
Reference in New Issue
Block a user