Fix condition in Exif.NikonFl7.FlashCompensation

main
postscript-dev 4 years ago
parent f23d965643
commit 8ebf10f921
No known key found for this signature in database
GPG Key ID: F3EC02A099292862

@ -2929,7 +2929,7 @@ fmountlens[] = {
if (temp == 0)
os << 0;
else if ( std::numeric_limits<float>::min() > temp && temp > std::numeric_limits<float>::max() )
else if ( std::numeric_limits<float>::min() > temp || temp > std::numeric_limits<float>::max() )
os << "(" << value << ")";
else if ( (int(temp)/temp) > 0.999 )
os << int(temp);

Loading…
Cancel
Save