diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index f37d57ef3..78713cbe8 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -30,7 +30,7 @@ ** But other routines are also provided to help in building up ** a program instruction by instruction. ** -** $Id: vdbe.c,v 1.133 2002/03/06 22:01:36 drh Exp $ +** $Id: vdbe.c,v 1.134 2002/03/10 21:21:00 drh Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -2468,7 +2468,7 @@ case OP_IncrKey: { case OP_Checkpoint: { rc = sqliteBtreeBeginCkpt(pBt); if( rc==SQLITE_OK && db->pBeTemp ){ - rc = sqliteBtreeBeginCkpt(pBt); + rc = sqliteBtreeBeginCkpt(db->pBeTemp); } break; } |