From f7b427753e3f7282a644d1ebdc48f18e8f2fd6bc Mon Sep 17 00:00:00 2001 From: Simon Gander Date: Thu, 11 Apr 2019 19:33:04 +0200 Subject: [PATCH] Fixed bug in DiskImageFile. --- ApfsLib/DiskImageFile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApfsLib/DiskImageFile.h b/ApfsLib/DiskImageFile.h index 6248b99..59a2528 100644 --- a/ApfsLib/DiskImageFile.h +++ b/ApfsLib/DiskImageFile.h @@ -18,7 +18,7 @@ class DiskImageFile void Read(uint64_t off, void *data, size_t size); - size_t GetContentSize() const { return m_crypt_size; } + uint64_t GetContentSize() const { return m_crypt_size; } bool CheckSetupEncryption();