diff options
author | drh <drh@noemail.net> | 2011-05-28 19:24:15 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-05-28 19:24:15 +0000 |
commit | 21f80f0478ae4570dfd9f803fecd15a05abc5b54 (patch) | |
tree | 1206f45baaeb0537ee222797098334cc525eb9b5 /src | |
parent | c97125eb72437be15c8499782bb00c786671cd4a (diff) | |
download | sqlite-21f80f0478ae4570dfd9f803fecd15a05abc5b54.tar.gz sqlite-21f80f0478ae4570dfd9f803fecd15a05abc5b54.zip |
Fix a "#ifdef" from check-in [03f7d36a8a] that should have been "#ifndef".
FossilOrigin-Name: edb865c35415f9553f8279028120f7b8de2bf7e2
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index c55927e66..d28f73d1b 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -2584,7 +2584,7 @@ case OP_Savepoint: { }else{ nName = sqlite3Strlen30(zName); -#ifdef SQLITE_OMIT_VIRTUAL_TABLE +#ifndef SQLITE_OMIT_VIRTUAL_TABLE /* This call is Ok even if this savepoint is actually a transaction ** savepoint (and therefore should not prompt xSavepoint()) callbacks. ** If this is a transaction savepoint being opened, it is guaranteed |