summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-12-14 02:20:02 +0100
committerCarl Hetherington <cth@carlh.net>2019-12-14 02:20:02 +0100
commit5b109e2e90a8a05a1565a8a7983dbe1355740027 (patch)
treeb2a38b732269d8840eaf26783b521a1219f9f1a1
parentac868b5cbe40c1f26b37c5b4a0c7539bdf24395a (diff)
Fix typo.
-rw-r--r--src/lib/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp.cc b/src/lib/dcp.cc
index 48b704777..565b17229 100644
--- a/src/lib/dcp.cc
+++ b/src/lib/dcp.cc
@@ -77,7 +77,7 @@ DCP::cpls () const
if (!_tolerant) {
/** We accept and ignore EmptyAssetPathError but everything else is bad */
BOOST_FOREACH (dcp::VerificationNote j, notes) {
- if (j.code() == dcp::VerificationNote::Code::EMPTY_ASSET_PATH) {
+ if (j.code() == dcp::VerificationNote::EMPTY_ASSET_PATH) {
LOG_WARNING("Empty path in ASSETMAP of %1", i.string());
} else {
boost::throw_exception(dcp::DCPReadError(dcp::note_to_string(j)));