summaryrefslogtreecommitdiff
path: root/src/verify.cc
diff options
context:
space:
mode:
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 76d7c18d..8f850e83 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -59,9 +59,9 @@ dcp::verify (vector<boost::filesystem::path> directories)
try {
i->read (true, &errors);
} catch (DCPReadError& e) {
- notes.push_back (VerificationNote (VerificationNote::ERROR, e.what ()));
+ notes.push_back (VerificationNote (VerificationNote::VERIFY_ERROR, e.what ()));
} catch (XMLError& e) {
- notes.push_back (VerificationNote (VerificationNote::ERROR, e.what ()));
+ notes.push_back (VerificationNote (VerificationNote::VERIFY_ERROR, e.what ()));
}
}