summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-01-22 19:58:52 +0000
committerCarl Hetherington <cth@carlh.net>2015-01-22 19:58:52 +0000
commit14e4eac6689b5ffe3542d45ad62708507efcd791 (patch)
tree63c6a1a2a199a3fc71e3e56e8b4d4fd012ae9a66
parentb0a9bc81744440404d68bcbdc8bda925a8a64597 (diff)
Fix error.
-rw-r--r--src/stereo_picture_asset.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stereo_picture_asset.cc b/src/stereo_picture_asset.cc
index 47a41cc2..85921f9c 100644
--- a/src/stereo_picture_asset.cc
+++ b/src/stereo_picture_asset.cc
@@ -46,7 +46,7 @@ StereoPictureAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt,
ASDCP::JP2K::MXFSReader reader_B;
r = reader_B.OpenRead (other->path().string().c_str());
if (ASDCP_FAILURE (r)) {
- boost::throw_exception (MXFFileError ("could not open MXF file for reading", path().string(), r));
+ boost::throw_exception (MXFFileError ("could not open MXF file for reading", other->path().string(), r));
}
ASDCP::JP2K::PictureDescriptor desc_A;