From beaee050629612d941ac28645cc2e5c4bee20d0e Mon Sep 17 00:00:00 2001 From: Kevin Backhouse Date: Wed, 27 Jul 2022 22:50:07 -0400 Subject: [PATCH] Change type of sizeDataArea_ --- src/tiffcomposite_int.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tiffcomposite_int.hpp b/src/tiffcomposite_int.hpp index 1a7002c1..d2c04ed3 100644 --- a/src/tiffcomposite_int.hpp +++ b/src/tiffcomposite_int.hpp @@ -704,7 +704,7 @@ class TiffDataEntry : public TiffDataEntryBase { private: // DATA byte* pDataArea_{}; //!< Pointer to the data area (never alloc'd) - uint32_t sizeDataArea_{}; //!< Size of the data area + size_t sizeDataArea_{}; //!< Size of the data area }; // class TiffDataEntry