1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-19 21:43:15 +03:00

Fix harmless compiler warning.

FossilOrigin-Name: 280fd3a482978b4a488a8b425721e451c2a30745
This commit is contained in:
mistachkin
2015-09-09 17:23:48 +00:00
parent 4b03efb695
commit 3f62cb5aad
3 changed files with 8 additions and 8 deletions

View File

@@ -271,7 +271,7 @@ static WhereTerm *whereScanInit(
u32 opMask, /* Operator(s) to scan for */
Index *pIdx /* Must be compatible with this index */
){
int j;
int j = 0;
/* memset(pScan, 0, sizeof(*pScan)); */
pScan->pOrigWC = pWC;