summaryrefslogtreecommitdiff
path: root/src/verify.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-05-08 00:15:51 +0100
committerCarl Hetherington <cth@carlh.net>2018-05-08 00:15:51 +0100
commit9facd099fd1b0651af721883ea1ffe5590d4b23b (patch)
tree28044eba95ffb18fc37fc7f9fcb3685a09c49d0f /src/verify.cc
parentcc120b1a461fd91a8ea4553aa2f7fddce5f7f74a (diff)
parent7b03aba8bc4e9df269430d79ce4ee2c6bd5f344c (diff)
Merge branch 'master' of ssh://main.carlh.net/home/carl/git/libdcp
Diffstat (limited to 'src/verify.cc')
-rw-r--r--src/verify.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/verify.cc b/src/verify.cc
index ab6ba115..87958ed9 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -90,13 +90,13 @@ dcp::verify (vector<boost::filesystem::path> directories, function<void (string,
if (reel->main_picture()) {
stage ("Checking picture asset hash", reel->main_picture()->asset()->file());
if (verify_asset (reel->main_picture(), progress)) {
- notes.push_back (VerificationNote (VerificationNote::VERIFY_ERROR, "Picture asset hash is incorrect"));
+ notes.push_back (VerificationNote (VerificationNote::VERIFY_ERROR, "Picture asset hash is incorrect."));
}
}
if (reel->main_sound()) {
stage ("Checking sound asset hash", reel->main_sound()->asset()->file());
if (verify_asset (reel->main_sound(), progress)) {
- notes.push_back (VerificationNote (VerificationNote::VERIFY_ERROR, "Sound asset hash is incorrect"));
+ notes.push_back (VerificationNote (VerificationNote::VERIFY_ERROR, "Sound asset hash is incorrect."));
}
}
}