Fix some places where the DDT was still being used with 32-bit values.

This commit is contained in:
2025-10-10 11:45:18 +01:00
parent 30e2024622
commit ffe9311a74
3 changed files with 5 additions and 5 deletions

View File

@@ -140,7 +140,7 @@ typedef struct TapePartitionHashEntry
typedef struct TapeDdtHashEntry
{
uint64_t key; ///< Key: sector address
uint32_t value; ///< Value: DDT entry
uint64_t value; ///< Value: DDT entry
UT_hash_handle hh; ///< UTHASH handle
} TapeDdtHashEntry;