aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2008-06-27 00:52:45 +0000
committerdrh <drh@noemail.net>2008-06-27 00:52:45 +0000
commit6fccc35a9187673f97fed9ddedd06363e4c9b55e (patch)
tree85b4e814d2685749ab29818aaec2c4dcc22b78af /src/expr.c
parent66ba23ce86f1dee79b3f3f47e9fb7fd6f6b3dd33 (diff)
downloadsqlite-6fccc35a9187673f97fed9ddedd06363e4c9b55e.tar.gz
sqlite-6fccc35a9187673f97fed9ddedd06363e4c9b55e.zip
Remove unused variable. Fix a compiler warning. (CVS 5319)
FossilOrigin-Name: 0b01ec5cf7725a02d4c12167df125cef578f6219
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c
index 492832fe6..e548d02cf 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -12,7 +12,7 @@
** This file contains routines used for analyzing expressions and
** for generating VDBE code that evaluates expressions in SQLite.
**
-** $Id: expr.c,v 1.380 2008/06/27 00:47:29 drh Exp $
+** $Id: expr.c,v 1.381 2008/06/27 00:52:45 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -2578,7 +2578,7 @@ int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){
case TK_IN: {
int rNotFound = 0;
int rMayHaveNull = 0;
- int j1, j2, j3, j4, j5;
+ int j2, j3, j4, j5;
char affinity;
int eType;