aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2002-07-15 20:58:47 +0000
committerdrh <drh@noemail.net>2002-07-15 20:58:47 +0000
commit704027f16db4e135404ebe90ffbf011e7c752c01 (patch)
tree23af4dad2337ae77b5c644410c54462d365eaa1e /src/tclsqlite.c
parentad16844f35e1f1e2e96819146f604ef6330b00e2 (diff)
downloadsqlite-704027f16db4e135404ebe90ffbf011e7c752c01.tar.gz
sqlite-704027f16db4e135404ebe90ffbf011e7c752c01.zip
Fix a syntax error in the tclsqlite.c file. (CVS 678)
FossilOrigin-Name: 47997d7f3ad2dd486a00dc13b7a8c48bb4751e5d
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r--src/tclsqlite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c
index 93cf71846..466a78941 100644
--- a/src/tclsqlite.c
+++ b/src/tclsqlite.c
@@ -11,7 +11,7 @@
*************************************************************************
** A TCL Interface to SQLite
**
-** $Id: tclsqlite.c,v 1.38 2002/07/11 12:18:17 drh Exp $
+** $Id: tclsqlite.c,v 1.39 2002/07/15 20:58:48 drh Exp $
*/
#ifndef NO_TCL /* Omit this whole file if TCL is unavailable */
@@ -95,7 +95,7 @@ static int DbEvalCallback(
if( cbData->zArray[0] ){
Tcl_SetVar2(cbData->interp, cbData->zArray, "*",
Tcl_DStringValue(&dCol), TCL_LIST_ELEMENT|TCL_APPEND_VALUE);
- if( azN[nCol]!=0 } {
+ if( azN[nCol]!=0 ){
Tcl_DString dType;
Tcl_DStringInit(&dType);
Tcl_DStringAppend(&dType, "typeof:", -1);