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-09 00:22:10 +0100
commita23388cccfa93a781a4b280d628cf87fd2a26c49 (patch)
treef6489b95eeb6550883cdfea8c23c4547bcba1cd4 /src/dcp.cc
parent744c6bd1b3f0e8a4660d6fcdf930a31cb361c7cb (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;
}