1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix harmless compiler warning.

FossilOrigin-Name: ddacd10105c6df2d3a9d707947e72c62e88212eb
This commit is contained in:
mistachkin
2013-11-12 21:10:02 +00:00
parent 5e6790cb15
commit 3aa4be39a9
3 changed files with 8 additions and 9 deletions

View File

@ -343,7 +343,6 @@ int sqlite3Fts3GetVarint(const char *p, sqlite_int64 *v){
const char *pStart = p;
u32 a;
u64 b;
int ret;
int shift;
GETVARINT_STEP(a, p, 0, 0x00, 0x80, *v, 1);