diff --git a/src/futils.cpp b/src/futils.cpp index 5a7ea082..22fe4f16 100644 --- a/src/futils.cpp +++ b/src/futils.cpp @@ -146,10 +146,10 @@ namespace Exiv2 { std::string encoded; encoded.reserve(((dataLength / 3) + (dataLength % 3 > 0)) * 4); - std::uint32_t temp ; + uint32_t temp ; unsigned char* b = (unsigned char*) data_buf; - std::size_t i = 0 ; + size_t i = 0 ; while ( i < dataLength / 3 ) { temp = b[i+0] << 16;