diff options
| -rw-r--r-- | tools/dcpinfo.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dcpinfo.cc b/tools/dcpinfo.cc index 24e63d84..2779b76a 100644 --- a/tools/dcpinfo.cc +++ b/tools/dcpinfo.cc @@ -122,7 +122,7 @@ main (int argc, char* argv[]) bool ignore_missing_assets = false; int option_index = 0; - while (1) { + while (true) { static struct option long_options[] = { { "version", no_argument, 0, 'v' }, { "help", no_argument, 0, 'h' }, @@ -140,7 +140,7 @@ main (int argc, char* argv[]) switch (c) { case 'v': - cout << "dcpdiff version " << LIBDCP_VERSION << "\n"; + cout << "libdcp version " << LIBDCP_VERSION << "\n"; exit (EXIT_SUCCESS); case 'h': help (argv[0]); |
