aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2007-08-28 02:27:51 +0000
committerdrh <drh@noemail.net>2007-08-28 02:27:51 +0000
commit900b31ef49b4faed9c3f991ac1062f662f56a76d (patch)
treeceea21886b57fb93bdbb507e5da1b23780af34cf /src/sqliteInt.h
parentda57895fec0ee37620a3dd2abff2fa8b35fb9fa7 (diff)
downloadsqlite-900b31ef49b4faed9c3f991ac1062f662f56a76d.tar.gz
sqlite-900b31ef49b4faed9c3f991ac1062f662f56a76d.zip
Work toward correct btree locking in a multithreaded environment. (CVS 4307)
FossilOrigin-Name: b8cc493b47e618648f645ab73eb0253739e03fcd
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 1ebc23825..bc0e8aab1 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqliteInt.h,v 1.602 2007/08/27 23:26:59 drh Exp $
+** @(#) $Id: sqliteInt.h,v 1.603 2007/08/28 02:27:52 drh Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -233,8 +233,8 @@ struct BusyHandler {
** Defer sourcing vdbe.h and btree.h until after the "u8" and
** "BusyHandler typedefs.
*/
-#include "vdbe.h"
#include "btree.h"
+#include "vdbe.h"
#include "pager.h"