diff options
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c index 08c2949b1..fc838023c 100644 --- a/src/util.c +++ b/src/util.c @@ -284,7 +284,7 @@ void sqlite3DequoteExpr(Expr *p){ ** is always a no-op. */ void sqlite3DequoteToken(Token *p){ - int i; + unsigned int i; if( p->n<2 ) return; if( !sqlite3Isquote(p->z[0]) ) return; for(i=1; i<p->n-1; i++){ |