summaryrefslogtreecommitdiff
path: root/chromium/third_party/sqlite/src/ext/lsm1/lsm_ckpt.c
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/sqlite/src/ext/lsm1/lsm_ckpt.c')
-rw-r--r--chromium/third_party/sqlite/src/ext/lsm1/lsm_ckpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/third_party/sqlite/src/ext/lsm1/lsm_ckpt.c b/chromium/third_party/sqlite/src/ext/lsm1/lsm_ckpt.c
index ba92a823cf9..1c4f788ad65 100644
--- a/chromium/third_party/sqlite/src/ext/lsm1/lsm_ckpt.c
+++ b/chromium/third_party/sqlite/src/ext/lsm1/lsm_ckpt.c
@@ -511,7 +511,7 @@ static void ckptNewSegment(
pSegment->iFirst = ckptGobble64(aIn, piIn);
pSegment->iLastPg = ckptGobble64(aIn, piIn);
pSegment->iRoot = ckptGobble64(aIn, piIn);
- pSegment->nSize = (int)ckptGobble64(aIn, piIn);
+ pSegment->nSize = ckptGobble64(aIn, piIn);
assert( pSegment->iFirst );
}