summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-31 21:59:03 +0100
committerCarl Hetherington <cth@carlh.net>2023-01-07 22:39:46 +0100
commit363aee4c9c019c69022aa8e54fccf47682f5e247 (patch)
treefb9f983addb2409dcdfa53aebc38a6a74b77c08b /src
parent56f3d4c42ca9793ec2bf88cb0444327562e83ea3 (diff)
Cleanup: const correctness.
Diffstat (limited to 'src')
-rw-r--r--src/verify.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verify.cc b/src/verify.cc
index 5a999faf..eb44fc25 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -1232,7 +1232,7 @@ verify_extension_metadata(shared_ptr<const CPL> cpl, vector<VerificationNote>& n
bool
-pkl_has_encrypted_assets (shared_ptr<DCP> dcp, shared_ptr<PKL> pkl)
+pkl_has_encrypted_assets(shared_ptr<const DCP> dcp, shared_ptr<const PKL> pkl)
{
vector<string> encrypted;
for (auto i: dcp->cpls()) {