Skip to content

Commit

Permalink
Fix build error when EXIV2_DEBUG_MESSAGES is enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinbackhouse committed Jul 26, 2021
1 parent 2532f6d commit 35a2b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jpgimage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ namespace Exiv2 {
if (size >= 16) {
out.write(reinterpret_cast<const char*>(buf.pData_ + 16), size - 16);
#ifdef EXIV2_DEBUG_MESSAGES
std::cout << "iccProfile size = " << icc.size_ << std::endl;
std::cout << "iccProfile size = " << size - 16 << std::endl;
#endif
}
} else if (option == kpsIptcErase && signature == "Photoshop 3.0") {
Expand Down

0 comments on commit 35a2b25

Please sign in to comment.