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

Fix harmless compiler warnings. Omit redundant copies of os_common.h and

hwtime.h from the amalgamation.

FossilOrigin-Name: 091427007818537bb2f860c42dad867cb19050899186d4d180d195a1c6a98798
This commit is contained in:
drh
2021-08-06 15:26:01 +00:00
parent 65b400931d
commit 15482bc3f3
5 changed files with 21 additions and 21 deletions

View File

@@ -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++){