1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-06 15:49:35 +03:00

Fix a compiler warning.

FossilOrigin-Name: 6df99e52dabf2a243ad635529649b86c21735e91
This commit is contained in:
drh
2011-05-25 15:54:09 +00:00
parent 346506f97b
commit addd8f8729
3 changed files with 8 additions and 8 deletions

View File

@@ -1235,7 +1235,7 @@ struct VTable {
sqlite3_vtab *pVtab; /* Pointer to vtab instance */
int nRef; /* Number of pointers to this structure */
u8 bConstraint; /* True if constraints are supported */
u32 iSavepoint; /* Depth of the SAVEPOINT stack */
int iSavepoint; /* Depth of the SAVEPOINT stack */
VTable *pNext; /* Next in linked list (see above) */
};