summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-12-09 00:22:10 +0100
committerCarl Hetherington <cth@carlh.net>2019-12-22 01:21:00 +0100
commit84d01dde2fb2520572d122d53e1ffebefed48157 (patch)
treef6489b95eeb6550883cdfea8c23c4547bcba1cd4 /src/dcp.cc
parent63357f32e8229b9d734b0c0ab38cc062dcfec393 (diff)
Use VerificationNote more 'properly' in a fair few places.
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index 7f4540fa..e057f25f 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -200,7 +200,7 @@ DCP::read (list<dcp::VerificationNote>* notes, bool ignore_incorrect_picture_mxf
if (!boost::filesystem::exists(path)) {
if (notes) {
- notes->push_back (VerificationNote(VerificationNote::VERIFY_ERROR, VerificationNote::MISSING_ASSET));
+ notes->push_back (VerificationNote(VerificationNote::VERIFY_ERROR, VerificationNote::MISSING_ASSET, path));
}
continue;
}