1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix a couple of harmless warnings generated by clang.

FossilOrigin-Name: a1a3ff1f53145c5a9fbf29398cf4a453729e71f0
This commit is contained in:
drh
2016-02-19 15:17:53 +00:00
parent b1f4efd20b
commit e1ee002891
4 changed files with 11 additions and 10 deletions

View File

@ -526,7 +526,8 @@ static int fts3_test_varint_cmd(
#ifdef SQLITE_ENABLE_FTS3
char aBuf[24];
int rc;
Tcl_WideInt w, w2;
Tcl_WideInt w;
sqlite3_int64 w2;
int nByte, nByte2;
if( objc!=2 ){