diff options
Diffstat (limited to 'src/pager.h')
-rw-r--r-- | src/pager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pager.h b/src/pager.h index 5528be14e..7851d2834 100644 --- a/src/pager.h +++ b/src/pager.h @@ -81,8 +81,8 @@ typedef struct PgHdr DbPage; /* ** Flags that make up the mask passed to sqlite3PagerAcquire(). */ -#define PAGER_ACQUIRE_NOCONTENT 0x01 /* Do not load data from disk */ -#define PAGER_ACQUIRE_READONLY 0x02 /* Read-only page is acceptable */ +#define PAGER_GET_NOCONTENT 0x01 /* Do not load data from disk */ +#define PAGER_GET_READONLY 0x02 /* Read-only page is acceptable */ /* ** Flags for sqlite3PagerSetFlags() |