summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-02-12 23:08:58 +0100
committerCarl Hetherington <cth@carlh.net>2023-02-12 23:08:58 +0100
commitf6f13ef1d72aba7362688c420d5cc67ab313b326 (patch)
treed2d76a0a62804b2e90ca544fa3cf69b1c56a1907 /src/lib
parentcd798d5d3269dab83478a68e470ba69ba7549249 (diff)
Fix build for new libdcp.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/verify_dcp_job.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/verify_dcp_job.cc b/src/lib/verify_dcp_job.cc
index b59f5bfab..e054fae3a 100644
--- a/src/lib/verify_dcp_job.cc
+++ b/src/lib/verify_dcp_job.cc
@@ -76,7 +76,7 @@ VerifyDCPJob::update_stage (string s, optional<boost::filesystem::path> path)
void
VerifyDCPJob::run ()
{
- _notes = dcp::verify (_directories, bind (&VerifyDCPJob::update_stage, this, _1, _2), bind (&VerifyDCPJob::set_progress, this, _1, false), libdcp_resources_path() / "xsd");
+ _notes = dcp::verify(_directories, bind(&VerifyDCPJob::update_stage, this, _1, _2), bind(&VerifyDCPJob::set_progress, this, _1, false), {}, libdcp_resources_path() / "xsd");
bool failed = false;
for (auto i: _notes) {