Skip to content

Commit

Permalink
iloc: fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
bradh committed Feb 13, 2024
1 parent d08df5d commit b671d75
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 @@ -1275,9 +1275,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 b671d75

Please sign in to comment.