Fix data size mishap.

This commit is contained in:
2025-07-31 14:47:54 +01:00
parent 6a2e59263a
commit ed15aa09be
2 changed files with 4 additions and 4 deletions

View File

@@ -56,7 +56,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 */
uint16_t dataType;
uint32_t dataType;
/**Offset in file where item is stored */
uint64_t offset;
} IndexEntry;