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

Fixed warnings with MSVC compile.

FossilOrigin-Name: e0aa50c382a56bb02eaa589619b7e670006a26b3
This commit is contained in:
drh
2009-10-13 19:19:23 +00:00
parent a46057b0fe
commit fcb9f7ad7a
5 changed files with 11 additions and 21 deletions

View File

@@ -1005,7 +1005,7 @@ struct FuncDef {
*/
struct Savepoint {
char *zName; /* Savepoint name (nul-terminated) */
int nDeferredCons; /* Number of deferred fk violations */
i64 nDeferredCons; /* Number of deferred fk violations */
Savepoint *pNext; /* Parent savepoint (if any) */
};