Skip to content

Commit

Permalink
taic: fix box dump output
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Nov 6, 2024
1 parent 88ddc56 commit b047deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libheif/box.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4632,7 +4632,7 @@ std::string Box_taic::dump(Indent& indent) const {
sstr << m_clock_drift_rate << "\n";
}

sstr << indent << "clock_type: " << m_clock_type << "\n";
sstr << indent << "clock_type: " << static_cast<int>(m_clock_type) << "\n";
return sstr.str();
}

Expand Down

0 comments on commit b047deb

Please sign in to comment.