diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-09 21:40:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-11 09:33:33 +0100 |
| commit | e457efe73b651538ca42a04d7e8c365ce5f6731e (patch) | |
| tree | 4402cee35570d5a85eaa97ff4e579f2e31bd3d75 /src/tools/dcpomatic_kdm_cli.cc | |
| parent | 27e292a7ceed10dbb6c5e830493ef6528d129200 (diff) | |
Allow control of where KDM CLI's output goes.
Diffstat (limited to 'src/tools/dcpomatic_kdm_cli.cc')
| -rw-r--r-- | src/tools/dcpomatic_kdm_cli.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_kdm_cli.cc b/src/tools/dcpomatic_kdm_cli.cc index 55997fd13..04f102cf1 100644 --- a/src/tools/dcpomatic_kdm_cli.cc +++ b/src/tools/dcpomatic_kdm_cli.cc @@ -31,7 +31,7 @@ int main (int argc, char* argv[]) { - auto error = kdm_cli (argc, argv); + auto error = kdm_cli (argc, argv, [](std::string s) { std::cout << s << "\n"; }); if (error) { std::cerr << *error << "\n"; exit (EXIT_FAILURE); |
