1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-03 16:53:36 +03:00

Fix harmless compiler warning.

FossilOrigin-Name: 8d18a803bdeab290a6e9ff26911897f5f8683876
This commit is contained in:
mistachkin
2014-03-04 11:16:20 +00:00
parent d34ab07507
commit ffe6bc2b93
3 changed files with 9 additions and 10 deletions

View File

@@ -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 */