1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix harmless compiler warning.

FossilOrigin-Name: f336c18fb72ab90e93640b12ac540d41accc7658
This commit is contained in:
mistachkin
2013-11-22 21:32:44 +00:00
parent f201496c6a
commit 20b859530b
3 changed files with 8 additions and 8 deletions

View File

@@ -244,7 +244,7 @@ void sqlite3DeleteFrom(
int aiCurOnePass[2]; /* The write cursors opened by WHERE_ONEPASS */
u8 *aToOpen = 0; /* Open cursor iTabCur+j if aToOpen[j] is true */
Index *pPk; /* The PRIMARY KEY index on the table */
int iPk; /* First of nPk registers holding PRIMARY KEY value */
int iPk = 0; /* First of nPk registers holding PRIMARY KEY value */
i16 nPk = 1; /* Number of columns in the PRIMARY KEY */
int iKey; /* Memory cell holding key of row to be deleted */
i16 nKey; /* Number of memory cells in the row key */