aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2005-10-06 13:59:26 +0000
committerdrh <drh@noemail.net>2005-10-06 13:59:26 +0000
commit23cc57f6a3b234545d65763694cf21cd07e2eeeb (patch)
treeb372ccc89f5ae28ef132367438e1ff0c59aa5a14 /src
parenteb3d389ca9609e0083cc13aee3745716b79c8093 (diff)
downloadsqlite-23cc57f6a3b234545d65763694cf21cd07e2eeeb.tar.gz
sqlite-23cc57f6a3b234545d65763694cf21cd07e2eeeb.zip
Check-in (2744) as incomplete and broke pragma integrity_check. This
completes the change and fixes the problem. (CVS 2746) FossilOrigin-Name: 4862eaafd875eb1069076864c7cad600a76620c7
Diffstat (limited to 'src')
-rw-r--r--src/pragma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pragma.c b/src/pragma.c
index ba7a753eb..87d87fab1 100644
--- a/src/pragma.c
+++ b/src/pragma.c
@@ -11,7 +11,7 @@
*************************************************************************
** This file contains code used to implement the PRAGMA command.
**
-** $Id: pragma.c,v 1.101 2005/10/05 11:41:48 drh Exp $
+** $Id: pragma.c,v 1.102 2005/10/06 13:59:27 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -670,7 +670,7 @@ void sqlite3Pragma(
sqlite3VdbeAddOp(v, OP_IntegrityCk, cnt, i);
sqlite3VdbeAddOp(v, OP_Dup, 0, 1);
addr = sqlite3VdbeOp3(v, OP_String8, 0, 0, "ok", P3_STATIC);
- sqlite3VdbeAddOp(v, OP_Eq, 0, addr+6);
+ sqlite3VdbeAddOp(v, OP_Eq, 0, addr+7);
sqlite3VdbeOp3(v, OP_String8, 0, 0,
sqlite3MPrintf("*** in database %s ***\n", db->aDb[i].zName),
P3_DYNAMIC);