diff options
author | drh <> | 2021-08-06 15:26:01 +0000 |
---|---|---|
committer | drh <> | 2021-08-06 15:26:01 +0000 |
commit | 15482bc3f3a2c98a4e391865194fbab46eb4e3cf (patch) | |
tree | 5af417f0aedf9a446a18879dcc0c718935c6ecaf /src/util.c | |
parent | 65b400931ddbaaa2059094a014ecf46c0840857c (diff) | |
download | sqlite-15482bc3f3a2c98a4e391865194fbab46eb4e3cf.tar.gz sqlite-15482bc3f3a2c98a4e391865194fbab46eb4e3cf.zip |
Fix harmless compiler warnings. Omit redundant copies of os_common.h and
hwtime.h from the amalgamation.
FossilOrigin-Name: 091427007818537bb2f860c42dad867cb19050899186d4d180d195a1c6a98798
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++){ |