aboutsummaryrefslogtreecommitdiff
path: root/src/btreeInt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/btreeInt.h')
-rw-r--r--src/btreeInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/btreeInt.h b/src/btreeInt.h
index 1f45553dc..af295dd50 100644
--- a/src/btreeInt.h
+++ b/src/btreeInt.h
@@ -674,9 +674,9 @@ struct BtCursor {
** So, this macro is defined instead.
*/
#ifndef SQLITE_OMIT_AUTOVACUUM
-#define ISAUTOVACUUM (pBt->autoVacuum)
+#define ISAUTOVACUUM(pBt) (pBt->autoVacuum)
#else
-#define ISAUTOVACUUM 0
+#define ISAUTOVACUUM(pBt) 0
#endif