1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-08 03:22:21 +03:00

Remove unused variable. Fix a compiler warning. (CVS 5319)

FossilOrigin-Name: 0b01ec5cf7725a02d4c12167df125cef578f6219
This commit is contained in:
drh
2008-06-27 00:52:45 +00:00
parent 66ba23ce86
commit 6fccc35a91
5 changed files with 15 additions and 17 deletions

View File

@@ -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;