diff options
author | drh <drh@noemail.net> | 2008-10-09 14:45:25 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-10-09 14:45:25 +0000 |
commit | 073e7b1ca34bc38dc18dfc6c65ed681fdf51f2ee (patch) | |
tree | a708cba7d0e914d61d9cd68c06e47241826cd195 /src/tclsqlite.c | |
parent | be51a65dbc99ff0c132b9467295821b39f786856 (diff) | |
download | sqlite-073e7b1ca34bc38dc18dfc6c65ed681fdf51f2ee.tar.gz sqlite-073e7b1ca34bc38dc18dfc6c65ed681fdf51f2ee.zip |
Minor cleanup of the new "status" command on the TCL bindings. (CVS 5783)
FossilOrigin-Name: ec01bd72ee875df179c680c1a40304d2f807fe38
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 6230330bc..d94a9ae66 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -12,7 +12,7 @@ ** A TCL Interface to SQLite. Append this file to sqlite3.c and ** compile the whole thing to build a TCL-enabled version of SQLite. ** -** $Id: tclsqlite.c,v 1.227 2008/10/07 23:46:38 drh Exp $ +** $Id: tclsqlite.c,v 1.228 2008/10/09 14:45:26 drh Exp $ */ #include "tcl.h" #include <errno.h> @@ -2143,7 +2143,6 @@ static int DbObjCmd(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){ ** SQLITE_STMTSTATUS_SORT for the most recent eval. */ case DB_STATUS: { - int ms; int v; const char *zOp; if( objc!=3 ){ |