From fe6a016957d48b10ca5e702f45e0b50b51a37beb Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Thu, 25 Aug 2016 19:41:20 +0000 Subject: [PATCH] #922 Correction to r4434. Fixing another msvc build breaker. --- src/jpgimage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jpgimage.cpp b/src/jpgimage.cpp index e608ea84..f56546b0 100644 --- a/src/jpgimage.cpp +++ b/src/jpgimage.cpp @@ -774,7 +774,7 @@ namespace Exiv2 { if ( toggle++ % 2 ) std::cout << std::endl; else std::cout << ' ' ; } #endif - uint32_t count = iptcDataSegs.size(); + uint32_t count = (uint32_t) iptcDataSegs.size(); // figure out which blocks to copy uint64_t* pos = new uint64_t[count+2];