1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix several harmless compiler warnings.

FossilOrigin-Name: 7be03ecc04235420e54fed8a88742243278de160
This commit is contained in:
drh
2010-09-28 14:26:36 +00:00
parent e2248da1d0
commit 6ac78a0d9f
7 changed files with 35 additions and 23 deletions

View File

@@ -113,7 +113,7 @@ static void analyzeOneTable(
int i; /* Loop counter */
int topOfLoop; /* The top of the loop */
int endOfLoop; /* The end of the loop */
int addr; /* The address of an instruction */
int addr = 0; /* The address of an instruction */
int jZeroRows = 0; /* Jump from here if number of rows is zero */
int iDb; /* Index of database containing pTab */
int regTabname = iMem++; /* Register containing table name */