diff options
author | shaneh <shaneh@noemail.net> | 2010-08-18 02:28:48 +0000 |
---|---|---|
committer | shaneh <shaneh@noemail.net> | 2010-08-18 02:28:48 +0000 |
commit | 1df2db7fd1a3bd465e14efa819faa28259a3162e (patch) | |
tree | 627f982c5f61b43da872d3d04f5c96ff84873577 /src/expr.c | |
parent | 89bd82ae9d80abddb27df1ede84fe5ed2245ac59 (diff) | |
download | sqlite-1df2db7fd1a3bd465e14efa819faa28259a3162e.tar.gz sqlite-1df2db7fd1a3bd465e14efa819faa28259a3162e.zip |
Fix some compiler warnings in the MSVC build.
FossilOrigin-Name: 1f5662b7db5d623c8d99c45a8d97a0aa4427593f
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index fd21eb558..33864b2da 100644 --- a/src/expr.c +++ b/src/expr.c @@ -566,7 +566,7 @@ void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); } if( i>pParse->nVar ){ - pParse->nVar = i; + pParse->nVar = (int)i; } }else{ /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable |