Fix Linux build breakers.

This commit is contained in:
clanmills
2021-03-06 18:38:09 +00:00
parent 5410395576
commit 80e20304cb
+2 -2
View File
@@ -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;