aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2009-07-02 05:23:25 +0000
committerdanielk1977 <danielk1977@noemail.net>2009-07-02 05:23:25 +0000
commit325ccfa90e36c8607a5acddaffb25e408013fe05 (patch)
tree0eda9693e4d41a331fa4b4b36b2498b0b50c42b1 /src
parent8b32282795e357db515d8b01cd22704bbcf0f264 (diff)
downloadsqlite-325ccfa90e36c8607a5acddaffb25e408013fe05.tar.gz
sqlite-325ccfa90e36c8607a5acddaffb25e408013fe05.zip
Fix for compilation with OMIT_AUTOVACUUM defined. Ticket #3940. (CVS 6835)
FossilOrigin-Name: 8f0591ae98c2125a4922933496f4412aee8ab86e
Diffstat (limited to 'src')
-rw-r--r--src/btree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/btree.c b/src/btree.c
index 68f196206..e371f6184 100644
--- a/src/btree.c
+++ b/src/btree.c
@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
-** $Id: btree.c,v 1.646 2009/06/29 06:00:37 danielk1977 Exp $
+** $Id: btree.c,v 1.647 2009/07/02 05:23:26 danielk1977 Exp $
**
** This file implements a external (disk-based) database using BTrees.
** See the header comment on "btreeInt.h" for additional information.
@@ -769,6 +769,7 @@ static int ptrmapGet(BtShared *pBt, Pgno key, u8 *pEType, Pgno *pPgno){
#else /* if defined SQLITE_OMIT_AUTOVACUUM */
#define ptrmapPut(w,x,y,z) SQLITE_OK
#define ptrmapGet(w,x,y,z) SQLITE_OK
+ #define ptrmapPutOvflPtr(x, y) SQLITE_OK
#endif
/*