diff options
author | drh <drh@noemail.net> | 2014-10-27 19:39:51 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-10-27 19:39:51 +0000 |
commit | 98d94211ced2604da384d16978f783b4f166cfdb (patch) | |
tree | 9f0849a480db2e6fc9d75308878ae0987f87cd7a /src | |
parent | a4b8fa23608030bf7586eb0bc566e8e053b704e2 (diff) | |
download | sqlite-98d94211ced2604da384d16978f783b4f166cfdb.tar.gz sqlite-98d94211ced2604da384d16978f783b4f166cfdb.zip |
Fix a typo in the macro name of an #ifdef
FossilOrigin-Name: 9646a136e69cf2583965dfc9fac5f056af4cdb62
Diffstat (limited to 'src')
-rw-r--r-- | src/ctime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ctime.c b/src/ctime.c index 36d0c266e..59dc972d8 100644 --- a/src/ctime.c +++ b/src/ctime.c @@ -392,7 +392,7 @@ static const char * const azCompileOpt[] = { int sqlite3_compileoption_used(const char *zOptName){ int i, n; -#ifdef SQLITE_ENABLE_API_ARMORE +#ifdef SQLITE_ENABLE_API_ARMOR if( zOptName==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; |