diff options
author | drh <drh@noemail.net> | 2015-05-05 10:46:02 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-05-05 10:46:02 +0000 |
commit | 59ba6e883230eaf00b8eb0a20caf721db772022e (patch) | |
tree | 1cf17cbe73a817ec35a9b6ca1a43161ed4b15926 /src | |
parent | dd14ecbca5a3e92d6582af230f9441a4448420b2 (diff) | |
download | sqlite-59ba6e883230eaf00b8eb0a20caf721db772022e.tar.gz sqlite-59ba6e883230eaf00b8eb0a20caf721db772022e.zip |
Spell SQLITE_OMIT_VIRTUALTABLE correctly in a #if in dbstat.c.
FossilOrigin-Name: d2cb1becc07fad5cbd48c206c676493ba90cada1
Diffstat (limited to 'src')
-rw-r--r-- | src/dbstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbstat.c b/src/dbstat.c index a53bc07e4..fb5a52b79 100644 --- a/src/dbstat.c +++ b/src/dbstat.c @@ -19,7 +19,7 @@ */ #if (defined(SQLITE_ENABLE_DBSTAT_VTAB) || defined(SQLITE_TEST)) \ - && !defined(SQLITE_OMIT_VIRTUAL_TABLE) + && !defined(SQLITE_OMIT_VIRTUALTABLE) #include "sqliteInt.h" /* Requires access to internal data structures */ /* |