diff options
author | drh <drh@noemail.net> | 2009-03-25 16:51:43 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2009-03-25 16:51:43 +0000 |
commit | 7c01f1d7544fa040ecea302b53dcb1561b267e9a (patch) | |
tree | 1762d2414081dc5b2919ad26a8c8580aee3c234e /src/where.c | |
parent | 357864ecb6413b21712b99d1970cf7e6fb105668 (diff) | |
download | sqlite-7c01f1d7544fa040ecea302b53dcb1561b267e9a.tar.gz sqlite-7c01f1d7544fa040ecea302b53dcb1561b267e9a.zip |
Remove an unused parameter from sqlite3DequoteExpr. Fix another unrelated
and harmless compiler warning. (CVS 6386)
FossilOrigin-Name: 8589b0fcc51a32188386e442655fd91f421ca7f8
Diffstat (limited to 'src/where.c')
-rw-r--r-- | src/where.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/where.c b/src/where.c index 654549456..d3947edc8 100644 --- a/src/where.c +++ b/src/where.c @@ -16,7 +16,7 @@ ** so is applicable. Because this module is responsible for selecting ** indices, you might also think of this module as the "query optimizer". ** -** $Id: where.c,v 1.376 2009/03/22 20:36:19 drh Exp $ +** $Id: where.c,v 1.377 2009/03/25 16:51:43 drh Exp $ */ #include "sqliteInt.h" @@ -656,7 +656,7 @@ static int isLikeOrGlob( (pColl->type!=SQLITE_COLL_NOCASE || !*pnoCase) ){ return 0; } - sqlite3DequoteExpr(db, pRight); + sqlite3DequoteExpr(pRight); z = (char *)pRight->token.z; cnt = 0; if( z ){ |