msvc: fix compiler warning on x86

main
Luis Díaz Más 4 years ago
parent 0bd2ff32ad
commit 9de534976f

@ -1292,7 +1292,7 @@ namespace Exiv2 {
if (newIdx < 0) if (newIdx < 0)
return 1; return 1;
if (static_cast<size_t>(newIdx) > p_->size_) { if (newIdx > p_->size_) {
p_->eof_ = true; p_->eof_ = true;
return 1; return 1;
} }

Loading…
Cancel
Save