1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Changes some offset and amount parameters from "int" to "u32" to avoid

harmless signed/unsigned comparison warnings.

FossilOrigin-Name: 4e8c5d0795cb7c603182bfa70f3855d654f0997e
This commit is contained in:
drh
2013-11-21 21:59:53 +00:00
parent 7a909855f2
commit 501932ca68
8 changed files with 26 additions and 26 deletions

View File

@@ -2264,7 +2264,7 @@ case OP_Column: {
const u8 *zEndHdr; /* Pointer to first byte after the header */
u32 offset; /* Offset into the data */
u32 szField; /* Number of bytes in the content of a field */
int avail; /* Number of bytes of available data */
u32 avail; /* Number of bytes of available data */
u32 t; /* A type code from the record header */
Mem *pReg; /* PseudoTable input register */