diff options
author | drh <drh@noemail.net> | 2000-06-02 13:27:59 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2000-06-02 13:27:59 +0000 |
commit | bed8690fde9d25ee0924c25c549e5bc406868f6a (patch) | |
tree | 96698d7de35de2dbceed7199e4c4ed2f9d3632b0 /src/expr.c | |
parent | bdc2df79b6aa09d16159a04d3a2cab90bf5f2efb (diff) | |
download | sqlite-bed8690fde9d25ee0924c25c549e5bc406868f6a.tar.gz sqlite-bed8690fde9d25ee0924c25c549e5bc406868f6a.zip |
:-) (CVS 37)
FossilOrigin-Name: 2b55f9b790e2914bbd2fd27ef23bbab79fa76937
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/expr.c b/src/expr.c index 01ed63d1c..73478feb6 100644 --- a/src/expr.c +++ b/src/expr.c @@ -23,7 +23,7 @@ ************************************************************************* ** This file contains C code routines used for processing expressions ** -** $Id: expr.c,v 1.1 2000/05/31 15:34:53 drh Exp $ +** $Id: expr.c,v 1.2 2000/06/02 13:27:59 drh Exp $ */ #include "sqliteInt.h" @@ -77,10 +77,9 @@ int sqliteExprResolveIds(Parse *pParse, IdList *pTabList, Expr *pExpr){ /* A table name and field name: ID.ID */ case TK_DOT: { - int cnt = 0; /* Number of matches */ - int i; /* Loop counter */ + int cnt = 0; /* Number of matches */ + int i; /* Loop counter */ Expr *pLeft, *pRight; /* Left and right subbranches of the expr */ - int n; /* Length of an identifier */ char *zLeft, *zRight; /* Text of an identifier */ pLeft = pExpr->pLeft; |