Skip to content

Commit

Permalink
Fixed compile error for epsimage.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
wmanth committed Apr 2, 2024
1 parent 66297f2 commit 1834845
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/epsimage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -618,9 +618,9 @@ void readWriteEpsMetadata(BasicIo& io, std::string& xmpPacket, NativePreviewList
#ifdef DEBUG
auto [r, s] = removableEmbeddings.back();
EXV_DEBUG << "readWriteEpsMetadata: Recognized unmarked trailer of removable XMP embedding at [" << r << "," << s
<< ")\n"
<< ")\n";
#endif
posXmpTrailerEnd = posXmpTrailer;
posXmpTrailerEnd = posXmpTrailer;
}

// interpret comment "%ADO_ContainsXMP:"
Expand Down Expand Up @@ -789,7 +789,7 @@ void readWriteEpsMetadata(BasicIo& io, std::string& xmpPacket, NativePreviewList
throw Error(ErrorCode::kerImageWriteFailed);
}
#ifdef DEBUG
EXV_DEBUG << "readWriteEpsMetadata: Created temporary file " << tempIo->path() << "\n";
EXV_DEBUG << "readWriteEpsMetadata: Created temporary file " << tempIo.path() << "\n";
#endif

// sort all positions
Expand Down

0 comments on commit 1834845

Please sign in to comment.