diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-12-25 21:43:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-12-25 21:43:10 +0100 |
| commit | ad4f5b4873782d7808d505e2946338fb116544b4 (patch) | |
| tree | ab973bf1803ddb884deeaaf4140d48b0bfaccabd /tools | |
| parent | 9139fb8bd816eb82defcd799403c42afdeb255b8 (diff) | |
Only write tool name into help, not its full path.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/dcpverify.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dcpverify.cc b/tools/dcpverify.cc index 6e8e5f0d..0ef256eb 100644 --- a/tools/dcpverify.cc +++ b/tools/dcpverify.cc @@ -109,7 +109,7 @@ main (int argc, char* argv[]) cout << "dcpverify version " << dcp::version << "\n"; exit (EXIT_SUCCESS); case 'h': - help (argv[0]); + help(boost::filesystem::path(argv[0]).filename().string()); exit (EXIT_SUCCESS); case 'A': ignore_missing_assets = true; |
