diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-05-10 10:34:51 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-05-10 10:34:51 +0000 |
commit | 6f8a503d71977f70bb203ee738dfbf5a646851e4 (patch) | |
tree | ee420ba1c4afc856c7b2585b33a8e20371680252 /src/test2.c | |
parent | 24b03fd055b993519961b0cffb2a79a4942fb3c7 (diff) | |
download | sqlite-6f8a503d71977f70bb203ee738dfbf5a646851e4.tar.gz sqlite-6f8a503d71977f70bb203ee738dfbf5a646851e4.zip |
Change the names of external symbols from sqlite_XXX to sqlite3_XXX. (CVS 1338)
FossilOrigin-Name: 2242423e31a5e81e89ffcc99e62307c5cc0120d5
Diffstat (limited to 'src/test2.c')
-rw-r--r-- | src/test2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test2.c b/src/test2.c index 13a7dae82..72b68c56b 100644 --- a/src/test2.c +++ b/src/test2.c @@ -13,7 +13,7 @@ ** is not included in the SQLite library. It is used for automated ** testing of the SQLite library. ** -** $Id: test2.c,v 1.18 2004/05/08 08:23:39 danielk1977 Exp $ +** $Id: test2.c,v 1.19 2004/05/10 10:34:53 danielk1977 Exp $ */ #include "os.h" #include "sqliteInt.h" @@ -524,7 +524,7 @@ static int fake_big_file( ** Register commands with the TCL interpreter. */ int Sqlitetest2_Init(Tcl_Interp *interp){ - extern int sqlite_io_error_pending; + extern int sqlite3_io_error_pending; char zBuf[100]; static struct { char *zName; @@ -551,8 +551,8 @@ int Sqlitetest2_Init(Tcl_Interp *interp){ for(i=0; i<sizeof(aCmd)/sizeof(aCmd[0]); i++){ Tcl_CreateCommand(interp, aCmd[i].zName, aCmd[i].xProc, 0, 0); } - Tcl_LinkVar(interp, "sqlite_io_error_pending", - (char*)&sqlite_io_error_pending, TCL_LINK_INT); + Tcl_LinkVar(interp, "sqlite3_io_error_pending", + (char*)&sqlite3_io_error_pending, TCL_LINK_INT); #ifdef SQLITE_TEST { extern int journal_format; |