diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-07-22 10:46:29 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-07-22 10:46:29 +0100 |
| commit | 47cf5aaf482913cd7a4476bcc873e8beee03660d (patch) | |
| tree | 7b9592a965688a701a135433c4f307c5be78f3d9 | |
| parent | c5256bc4aad29f7b448339791ca33be79b81f631 (diff) | |
Improve error.
| -rw-r--r-- | src/mxf.cc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -114,9 +114,11 @@ MXF::equals (shared_ptr<const Asset> other, EqualityOptions opt, boost::function } if (_file != other_mxf->file ()) { - note (DCP_ERROR, "MXF: names differ"); if (!opt.mxf_names_can_differ) { + note (DCP_ERROR, "MXF: names differ"); return false; + } else { + note (DCP_NOTE, "MXF: names differ"); } } |
