diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-05-25 12:05:56 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-05-25 12:05:56 +0000 |
commit | 0ae8b831556283eb437727fbc9c411d32c250fe8 (patch) | |
tree | b63afae7ddd331fb667c99726abc612910d65876 /src/tclsqlite.c | |
parent | 7e18c259fed73572745907c1b9c63fe098ee0515 (diff) | |
download | sqlite-0ae8b831556283eb437727fbc9c411d32c250fe8.tar.gz sqlite-0ae8b831556283eb437727fbc9c411d32c250fe8.zip |
Change a couple of symbol names for the new user function API. (CVS 1454)
FossilOrigin-Name: 8f6b20c2938ded7ab9e400494c02370ecf7e9311
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index a2b4983bd..7cb5bf8da 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -11,7 +11,7 @@ ************************************************************************* ** A TCL Interface to SQLite ** -** $Id: tclsqlite.c,v 1.68 2004/05/25 11:47:26 danielk1977 Exp $ +** $Id: tclsqlite.c,v 1.69 2004/05/25 12:05:57 danielk1977 Exp $ */ #ifndef NO_TCL /* Omit this whole file if TCL is unavailable */ @@ -379,7 +379,7 @@ static int DbCommitHandler(void *cd){ ** This routine is called to evaluate an SQL function implemented ** using TCL script. */ -static void tclSqlFunc(sqlite_func *context, int argc, sqlite3_value **argv){ +static void tclSqlFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ SqlFunc *p = sqlite3_user_data(context); Tcl_DString cmd; int i; |