mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix harmless compiler warnings seen with MSVC for lsm1.
FossilOrigin-Name: cf6da4a52f7f9047e653ef2972e4c0910b29d7182d789a9e30225dc1849e8779
This commit is contained in:
@ -176,7 +176,7 @@ int lsmVarintGet32(u8 *z, int *piVal){
|
||||
}
|
||||
|
||||
ret = lsmSqlite4GetVarint64(z, &i);
|
||||
*piVal = i;
|
||||
*piVal = (int)i;
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user