Skip to content

Commit

Permalink
Merge pull request #1128 from bradh/error_fix_2024-02-13
Browse files Browse the repository at this point in the history
iloc: fix error message
  • Loading branch information
farindk authored Mar 31, 2024
2 parents a1eb8a7 + 019b64a commit 3c53869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libheif/box.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1268,9 +1268,9 @@ Error Box_iloc::read_data(const Item& item,
}
else {
std::stringstream sstr;
sstr << "Item construction method " << item.construction_method << " not implemented";
sstr << "Item construction method " << (int) item.construction_method << " not implemented";
return Error(heif_error_Unsupported_feature,
heif_suberror_No_idat_box,
heif_suberror_Unsupported_item_construction_method,
sstr.str());
}
}
Expand Down

0 comments on commit 3c53869

Please sign in to comment.