summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-26 00:29:30 +0100
committerCarl Hetherington <cth@carlh.net>2024-04-14 17:27:42 +0200
commitbd806060787e0d6d3433122040810622e3b677b7 (patch)
tree0bfc5a718f8b9176eaf94d7859fe9df7a00d4ad2 /tools
parentcdf3e79adcb4446390c5b5543198e2c7c1b16f32 (diff)
Add new OK type of verification note.
Diffstat (limited to 'tools')
-rw-r--r--tools/dcpverify.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/dcpverify.cc b/tools/dcpverify.cc
index 0ef256eb..ebc02874 100644
--- a/tools/dcpverify.cc
+++ b/tools/dcpverify.cc
@@ -188,6 +188,8 @@ main (int argc, char* argv[])
continue;
}
switch (i.type()) {
+ case dcp::VerificationNote::Type::OK:
+ break;
case dcp::VerificationNote::Type::ERROR:
cout << "Error: " << note_to_string(i) << "\n";
failed = true;