summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-10-10 20:35:16 +0200
committerCarl Hetherington <cth@carlh.net>2023-10-10 20:35:18 +0200
commit12bd8672230dc9d22b9ef14d3803cf13df2deac8 (patch)
tree6245f28adae617307dc3a46152fb77e89b9e4b55
parent9fcb89c1efc0cd53fdfca6eb8fda79e9d2758225 (diff)
Another compilation error fix for old toolchains.
-rw-r--r--src/lib/create_cli.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/create_cli.cc b/src/lib/create_cli.cc
index fb52f16b1..58aa1b01b 100644
--- a/src/lib/create_cli.cc
+++ b/src/lib/create_cli.cc
@@ -201,7 +201,8 @@ CreateCLI::CreateCLI (int argc, char* argv[])
argument_option(i, argc, argv, "-f", "--dcp-frame-rate", &claimed, &error, &dcp_frame_rate_int);
argument_option(i, argc, argv, "", "--container-ratio", &claimed, &error, &container_ratio_string);
argument_option(i, argc, argv, "-s", "--still-length", &claimed, &error, &still_length, string_to_nonzero_int);
- argument_option(i, argc, argv, "", "--standard", &claimed, &error, &standard_string);
+ /* See comment below about --cpl */
+ argument_option(i, argc, argv, "", "--standard", &claimed, &error, &standard_string, string_to_string);
argument_option(i, argc, argv, "", "--config", &claimed, &error, &config_dir, string_to_path);
argument_option(i, argc, argv, "-o", "--output", &claimed, &error, &output_dir, string_to_path);
argument_option(i, argc, argv, "", "--j2k-bandwidth", &claimed, &error, &j2k_bandwidth_int);