1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix harmless compiler warning.

FossilOrigin-Name: 4b130f88fba216e088f61252bbcdde57ec7ee6a9
This commit is contained in:
mistachkin
2013-10-12 02:33:22 +00:00
parent 0ed02a6dcb
commit b084582299
3 changed files with 8 additions and 8 deletions

View File

@ -4370,7 +4370,7 @@ static int fts3EvalIncrPhraseNext(
int nDist = p->nToken-1-i;
int res = fts3PoslistPhraseMerge(&pOut, nDist, 0, 1, &pL, &pR);
if( res==0 ) break;
nList = (pOut - aDoclist);
nList = (int)(pOut - aDoclist);
}
}
if( i==(p->nToken-1) ){