aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2014-03-04 11:16:20 +0000
committermistachkin <mistachkin@noemail.net>2014-03-04 11:16:20 +0000
commitffe6bc2b93fe2d02f166e1e18f383ac0b8fae0c3 (patch)
tree68b6ec8027c069da22e3d0d05aeffb34dd97cdcb /src
parentd34ab07507de47f6ec6c5f8e39a68f01aff4dce8 (diff)
downloadsqlite-ffe6bc2b93fe2d02f166e1e18f383ac0b8fae0c3.tar.gz
sqlite-ffe6bc2b93fe2d02f166e1e18f383ac0b8fae0c3.zip
Fix harmless compiler warning.
FossilOrigin-Name: 8d18a803bdeab290a6e9ff26911897f5f8683876
Diffstat (limited to 'src')
-rw-r--r--src/vdbeaux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbeaux.c b/src/vdbeaux.c
index 776821d39..90cc41534 100644
--- a/src/vdbeaux.c
+++ b/src/vdbeaux.c
@@ -3404,7 +3404,7 @@ int sqlite3VdbeRecordCompare(
){
u32 d1; /* Offset into aKey[] of next data element */
int i; /* Index of next field to compare */
- int szHdr1; /* Size of record header in bytes */
+ u32 szHdr1; /* Size of record header in bytes */
u32 idx1; /* Offset of first type in header */
int rc = 0; /* Return value */
Mem *pRhs = pPKey2->aMem; /* Next field of pPKey2 to compare */