mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Fix warning under MSVC.
FossilOrigin-Name: 0c32c4bbdd74297767dcf4ec4295f9cc72875af0
This commit is contained in:
@@ -1458,7 +1458,7 @@ static int walIteratorInit(Wal *pWal, WalIterator **pp){
|
||||
if( (i+1)==nSegment ){
|
||||
nEntry = (int)(iLast - iZero);
|
||||
}else{
|
||||
nEntry = (u32*)aHash - (u32*)aPgno;
|
||||
nEntry = (int)((u32*)aHash - (u32*)aPgno);
|
||||
}
|
||||
aIndex = &((ht_slot *)&p->aSegment[p->nSegment])[iZero];
|
||||
iZero++;
|
||||
|
Reference in New Issue
Block a user