Skip to content

Commit

Permalink
Merge pull request #1227 from Exiv2/v0.27.3_RC2
Browse files Browse the repository at this point in the history
v0.27.3 rc2
  • Loading branch information
clanmills authored May 31, 2020
2 parents 5f28a57 + 7b15178 commit 58fb9f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
cmake_minimum_required( VERSION 3.3.2 )

project(exiv2 # use TWEAK to categorize the build
VERSION 0.27.3.20 # 0.27.3 = GM
VERSION 0.27.3.2 # 0.27.3 = GM
# 0.27.3.00 = GM Preview
# 0.27.3.09 = Not For Release
# 0.27.3.1 = RC1
# 0.27.3.10 = RC1 Preview
# 0.27.3.19 = RC1 Not for release
# 0.27.3.2 = RC2
# 0.27.3.20 = RC2 Preview
# 0.27.3.29 = RC2 Not for release
LANGUAGES CXX C
)
include(cmake/mainSetup.cmake REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion src/pngimage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ namespace Exiv2 {
if ( bExif || bIptc ) {
DataBuf parsedBuf = PngChunk::readRawProfile(dataBuf,tEXt);
#if EXIV2_DEBUG_MESSAGES
std::cerr << Exiv2::Internal::binaryToString(parsedBuf.pData_, parsedBuf.size_>50?50:parsedBuf.size_,0) << std::endl;
std::cerr << Exiv2::Internal::binaryToString(makeSlice(parsedBuf.pData_, parsedBuf.size_>50?50:parsedBuf.size_,0)) << std::endl;
#endif
if ( parsedBuf.size_ ) {
if ( bExif ) {
Expand Down

0 comments on commit 58fb9f8

Please sign in to comment.