Changes to the DBBE. Moving toward having many more
backend driver choices. (CVS 176)
FossilOrigin-Name: c0730217a04323a1a73d125e3e7da32bcc8d58fc
diff --git a/src/main.c b/src/main.c
index 0a21177..a707b67 100644
--- a/src/main.c
+++ b/src/main.c
@@ -26,7 +26,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
-** $Id: main.c,v 1.22 2000/12/10 18:23:50 drh Exp $
+** $Id: main.c,v 1.23 2001/01/13 14:34:06 drh Exp $
*/
#include "sqliteInt.h"
@@ -239,7 +239,7 @@
*/
void sqlite_close(sqlite *db){
int i;
- db->pBe->Close(db->pBe);
+ db->pBe->x->Close(db->pBe);
for(i=0; i<N_HASH; i++){
Table *pNext, *pList = db->apTblHash[i];
db->apTblHash[i] = 0;