aboutsummaryrefslogtreecommitdiff
path: root/src/test1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test1.c')
-rw-r--r--src/test1.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/test1.c b/src/test1.c
index 11ffb1e23..198744c2b 100644
--- a/src/test1.c
+++ b/src/test1.c
@@ -13,7 +13,7 @@
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
-** $Id: test1.c,v 1.270 2007/08/22 20:18:22 drh Exp $
+** $Id: test1.c,v 1.271 2007/08/23 02:47:53 drh Exp $
*/
#include "sqliteInt.h"
#include "tcl.h"
@@ -186,18 +186,6 @@ static int getStmtPointer(
}
/*
-** Decode a pointer to an sqlite3_stmt object.
-*/
-static int getFilePointer(
- Tcl_Interp *interp,
- const char *zArg,
- sqlite3_file **ppFile
-){
- *ppFile = (sqlite3_file*)sqlite3TextToPtr(zArg);
- return TCL_OK;
-}
-
-/*
** Generate a text representation of a pointer that can be understood
** by the getDbPointer and getVmPointer routines above.
**