aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2023-10-15 13:36:21 +0000
committerstephan <stephan@noemail.net>2023-10-15 13:36:21 +0000
commit24f6baca164bde519de34be8a95bf018c2c6e445 (patch)
tree72da6cb82687382edebe5af66c362843a1ab1158 /src/main.c
parent5698e62f9ed056659133d486ef6d12ba484c4e38 (diff)
downloadsqlite-24f6baca164bde519de34be8a95bf018c2c6e445.tar.gz
sqlite-24f6baca164bde519de34be8a95bf018c2c6e445.zip
Change 3 instance of #if SQLITE_ENABLE_API_ARMOR to #ifdef for consistency with how it is normally used.
FossilOrigin-Name: dd766eeb59fec71627dd8ad8f120875b96fda455c6401e5671e086b785e2b2bc
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 4ffef9b41..893326c2b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -5012,7 +5012,7 @@ int sqlite3_compileoption_used(const char *zOptName){
int nOpt;
const char **azCompileOpt;
-#if SQLITE_ENABLE_API_ARMOR
+#ifdef SQLITE_ENABLE_API_ARMOR
if( zOptName==0 ){
(void)SQLITE_MISUSE_BKPT;
return 0;