[lib] Fix data size mishap.

This commit is contained in:
2025-08-01 02:13:48 +01:00
parent 247b6a1531
commit 818101bf42
3 changed files with 6 additions and 6 deletions

View File

@@ -138,7 +138,7 @@ typedef struct IndexEntry
/**Type of item pointed by this entry */
uint32_t blockType;
/**Type of data contained by the block pointed by this entry */
uint32_t dataType;
uint16_t dataType;
/**Offset in file where item is stored */
uint64_t offset;
} IndexEntry;