aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2009-10-13 19:19:23 +0000
committerdrh <drh@noemail.net>2009-10-13 19:19:23 +0000
commitfcb9f7ad7affbba5c46008fc76d649c14bef273b (patch)
tree5812771f091fa6937c009c6ef6aa4c5f0552c911 /src/sqliteInt.h
parenta46057b0fe641a0b413d3bbc99524c5280e3708d (diff)
downloadsqlite-fcb9f7ad7affbba5c46008fc76d649c14bef273b.tar.gz
sqlite-fcb9f7ad7affbba5c46008fc76d649c14bef273b.zip
Fixed warnings with MSVC compile.
FossilOrigin-Name: e0aa50c382a56bb02eaa589619b7e670006a26b3
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 2675f44fb..6a82cb7c4 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -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) */
};