summaryrefslogtreecommitdiff
path: root/src/verify.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-03-29 13:41:58 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-01 23:43:00 +0200
commitd47514ac74ec18cd33481e54b459c4af542bbc19 (patch)
treebe10e29821f35638255d7662d8fa74f33fabc31c /src/verify.cc
parent1252940b0be76e0cd8f6995a4967d04b65c1e599 (diff)
EXTERNAL_ASSET: note -> asset_id.
Diffstat (limited to 'src/verify.cc')
-rw-r--r--src/verify.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verify.cc b/src/verify.cc
index fcee2967..7d87ba1f 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -2006,7 +2006,7 @@ dcp::note_to_string(VerificationNote note, function<string (string)> process_str
filename()
);
case VerificationNote::Code::EXTERNAL_ASSET:
- return compose("The asset %1 that this DCP refers to is not included in the DCP. It may be a VF.", note.note().get());
+ return compose("The asset %asset_id that this DCP refers to is not included in the DCP. It may be a VF.", *note.asset_id());
case VerificationNote::Code::THREED_ASSET_MARKED_AS_TWOD:
return compose("The asset %1 is 3D but its MXF is marked as 2D.", filename());
case VerificationNote::Code::INVALID_STANDARD: