summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-09-09 23:54:05 +0200
committerCarl Hetherington <cth@carlh.net>2020-09-09 23:54:05 +0200
commit9f6c0e4575bad2bc45edb8cf9afa5716b9988728 (patch)
tree302076ea5bb0f10950c59bfd613f1bddee1efb09 /src
parent62f9fadc0424dfab6debcc342a210b33c5e189e6 (diff)
Add some detail to a verification warning.
Diffstat (limited to 'src')
-rw-r--r--src/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index 2929b5d8..426bd815 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -263,7 +263,7 @@ DCP::read (list<dcp::VerificationNote>* notes, bool ignore_incorrect_picture_mxf
BOOST_FOREACH (shared_ptr<CPL> i, cpls()) {
BOOST_FOREACH (shared_ptr<const ReelMXF> j, i->reel_mxfs()) {
if (!j->asset_ref().resolved() && paths.find(j->asset_ref().id()) == paths.end()) {
- notes->push_back (VerificationNote(VerificationNote::VERIFY_WARNING, VerificationNote::EXTERNAL_ASSET));
+ notes->push_back (VerificationNote(VerificationNote::VERIFY_WARNING, VerificationNote::EXTERNAL_ASSET, j->asset_ref().id()));
}
}
}