Fix bad indentation in verify tool help.
authorCarl Hetherington <cth@carlh.net>
Mon, 25 Dec 2023 20:42:55 +0000 (21:42 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 25 Dec 2023 20:42:55 +0000 (21:42 +0100)
tools/dcpverify.cc

index 3619f1feb2ba24b97a5e6b53294548111b8f3f8c..6e8e5f0d87624cd24000b1f0f278b6a0ab7ab2d7 100644 (file)
@@ -62,11 +62,11 @@ static void
 help (string n)
 {
        cerr << "Syntax: " << n << " [OPTION] <DCP>\n"
-            << "  -V, --version                                show libdcp version\n"
-            << "  -h, --help                                   show this help\n"
-            << "  --ignore-missing-assets                      don't give errors about missing assets\n"
-            << "  --ignore-bv21-smpte                          don't give the SMPTE Bv2.1 error about a DCP not being SMPTE\n"
-            << "  --no-asset-hash-check                        don't check asset hashes\n"
+            << "  -V, --version                                show libdcp version\n"
+            << "  -h, --help                                   show this help\n"
+            << "  --ignore-missing-assets                      don't give errors about missing assets\n"
+            << "  --ignore-bv21-smpte                          don't give the SMPTE Bv2.1 error about a DCP not being SMPTE\n"
+            << "  --no-asset-hash-check                        don't check asset hashes\n"
             << "  --asset-hash-check-maximum-size <size-in-MB> only check hashes for assets smaller than this size (in MB)\n"
             << "  -q, --quiet                                  don't report progress\n";
 }