diff options
author | drh <drh@noemail.net> | 2003-12-19 12:32:45 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2003-12-19 12:32:45 +0000 |
commit | f93e41442efd2752dd2aaccef4228194b3668998 (patch) | |
tree | e9a63ddd49f3f5509a496a7881f3cadcb6cb4809 /src/tclsqlite.c | |
parent | 5202560ee5d87c659cdf3192eb41cb6eedb61e80 (diff) | |
download | sqlite-f93e41442efd2752dd2aaccef4228194b3668998.tar.gz sqlite-f93e41442efd2752dd2aaccef4228194b3668998.zip |
Remove a comma at the end of an enum definition. Some compilers could not
deal with it. (CVS 1140)
FossilOrigin-Name: b1890a5b9c1222086b3aae92e49eb090a17a6492
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 cd6a1ba13..c2f4cfd49 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -11,7 +11,7 @@ ************************************************************************* ** A TCL Interface to SQLite ** -** $Id: tclsqlite.c,v 1.52 2003/12/19 02:52:09 drh Exp $ +** $Id: tclsqlite.c,v 1.53 2003/12/19 12:32:46 drh Exp $ */ #ifndef NO_TCL /* Omit this whole file if TCL is unavailable */ @@ -480,7 +480,7 @@ static int DbObjCmd(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){ DB_CLOSE, DB_COMPLETE, DB_ERRORCODE, DB_EVAL, DB_FUNCTION, DB_LAST_INSERT_ROWID, DB_ONECOLUMN, DB_TIMEOUT, DB_TRACE, - DB_PROGRESS, + DB_PROGRESS }; if( objc<2 ){ |