Formatting of errors.
authorCarl Hetherington <cth@carlh.net>
Thu, 19 Apr 2018 23:41:30 +0000 (00:41 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 19 Apr 2018 23:41:30 +0000 (00:41 +0100)
src/verify.cc

index ab6ba115d1f1b36e7247e27c81400ef3988039c6..87958ed9b6daebb50efd9d94aff3220079288003 100644 (file)
@@ -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."));
                                        }
                                }
                        }