X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fasset.cc;h=fb21580e32651ce4be73e5b3947dd68cb8d3367e;hb=ad3d9f8bbe623f87e440bd6a5a12520361a7661f;hp=c566a1e56b22d147da78eea129475fccad9c9187;hpb=c2bac22380bea453665a24c6f39200a977771daf;p=libdcp.git diff --git a/src/asset.cc b/src/asset.cc index c566a1e5..fb21580e 100644 --- a/src/asset.cc +++ b/src/asset.cc @@ -98,18 +98,16 @@ bool Asset::equals (shared_ptr other, EqualityOptions, boost::function note) const { if (_edit_rate != other->_edit_rate) { - note (ERROR, "MXF edit rates differ"); + note (ERROR, "asset edit rates differ"); return false; } if (_intrinsic_duration != other->_intrinsic_duration) { - note (ERROR, "MXF intrinsic durations differ"); - return false; + note (ERROR, "asset intrinsic durations differ"); } if (_duration != other->_duration) { - note (ERROR, "MXF durations differ"); - return false; + note (ERROR, "asset durations differ"); } return true;