mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Changes to remove warnings in MSVC build.
FossilOrigin-Name: 6cf76c2ae25d6e58926637ecd42eed6b300b1a25
This commit is contained in:
@ -2210,8 +2210,9 @@ static void fts3ExprMatchInfo(
|
||||
sqlite3_int64 iOffset = 0;
|
||||
char *pList = pExpr->pCurrent;
|
||||
while( *pList&0xFE ){
|
||||
fts3GetDeltaVarint(&pList, &iOffset); iOffset -= 2;
|
||||
fts3MatchInfoAppend(pInfo, iOffset+1-nPhrase);
|
||||
fts3GetDeltaVarint(&pList, &iOffset);
|
||||
iOffset -= 2;
|
||||
fts3MatchInfoAppend(pInfo, (unsigned int)(iOffset+1-nPhrase));
|
||||
nLocal++;
|
||||
}
|
||||
pExpr->pCurrent = pList;
|
||||
|
Reference in New Issue
Block a user