Skip to content

Commit

Permalink
Fixed wrong formatting in lz4::getInfo error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arttu Ilari Miettinen committed Apr 5, 2022
1 parent fb17c95 commit 54573b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion itl2/io/itllz4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ namespace itl2
std::ifstream in(filename.c_str(), std::ios_base::in | std::ios_base::binary);
if (!in)
{
reason = std::string("Unable to open ") + filename + std::string(", ") + getStreamErrorMessage();
reason = getStreamErrorMessage();
return false;
}

Expand Down

0 comments on commit 54573b6

Please sign in to comment.