diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-12-10 00:01:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-10 00:01:09 +0100 |
| commit | 3c6ff2375886861cb41604e92cd8ff64a46dbe76 (patch) | |
| tree | 1c331b1247a634bfbebf21a8ea0f2ce2b55694b9 | |
| parent | cc8ea498a3ff9421765a99c347e03533cb0595d4 (diff) | |
dcpomatic_create should respond to --version on stdout, not stderr (#1686).
| -rw-r--r-- | src/tools/dcpomatic_create.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index 87626283c..68ae09c31 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -76,7 +76,7 @@ main (int argc, char* argv[]) } if (cc.version) { - cerr << "dcpomatic version " << dcpomatic_version << " " << dcpomatic_git_commit << "\n"; + cout << "dcpomatic version " << dcpomatic_version << " " << dcpomatic_git_commit << "\n"; exit (EXIT_SUCCESS); } |
