aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/json1.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2017-01-25 13:54:27 +0000
committerdrh <drh@noemail.net>2017-01-25 13:54:27 +0000
commit666d34c791536557855c3efd58a9a1c3ec7e59a0 (patch)
treee11e3900ffff24b730e2f85fd62d83fef8fa789b /ext/misc/json1.c
parentd1b2566b07744604a96593ea174f82e174eaa7f4 (diff)
downloadsqlite-666d34c791536557855c3efd58a9a1c3ec7e59a0.tar.gz
sqlite-666d34c791536557855c3efd58a9a1c3ec7e59a0.zip
Fix SQLITEINT_H macro usage in two extensions.
FossilOrigin-Name: 0803390c152141c9ab4e7a28406b2a5d72a5c2fa
Diffstat (limited to 'ext/misc/json1.c')
-rw-r--r--ext/misc/json1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/json1.c b/ext/misc/json1.c
index 327ad5750..3063f9f26 100644
--- a/ext/misc/json1.c
+++ b/ext/misc/json1.c
@@ -22,7 +22,7 @@
** how JSONB might improve on that.)
*/
#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_JSON1)
-#if !defined(_SQLITEINT_H_)
+#if !defined(SQLITEINT_H)
#include "sqlite3ext.h"
#endif
SQLITE_EXTENSION_INIT1