1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Fix a typo in (6861): "ifndef SQLITE_TEST" -> "ifdef SQLITE_TEST". (CVS 6865)

FossilOrigin-Name: 890dbab28c3a1af4a1e01221318c9200574139e7
This commit is contained in:
danielk1977
2009-07-08 18:50:55 +00:00
parent 4f02960899
commit 4e6604ee80
3 changed files with 9 additions and 9 deletions

View File

@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
** $Id: btree.c,v 1.664 2009/07/08 18:45:38 danielk1977 Exp $
** $Id: btree.c,v 1.665 2009/07/08 18:50:55 danielk1977 Exp $
**
** This file implements a external (disk-based) database using BTrees.
** See the header comment on "btreeInt.h" for additional information.
@@ -7047,7 +7047,7 @@ int sqlite3BtreeUpdateMeta(Btree *p, int idx, u32 iMeta){
return rc;
}
#ifndef SQLITE_TEST
#ifdef SQLITE_TEST
/*
** Return the flag byte at the beginning of the page that the cursor
** is currently pointing to.