diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-12-10 00:01:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-10 00:01:28 +0100 |
| commit | a949b98e6dc94a89c3d705577f5c4af8d8364e4f (patch) | |
| tree | f02635c1afd3f9aa579cdc7fc871d5e58687cf66 | |
| parent | 2998afa8238fc826f696a856f272e1f16d166f3c (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 f1df658c3..ef3333201 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); } |
