From: Carl Hetherington Date: Sat, 17 Sep 2022 20:31:49 +0000 (+0200) Subject: Don't dump empty error details. X-Git-Tag: v2.16.27~15 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=0792f10d395c90532e8c778eab22145e746257e6 Don't dump empty error details. --- diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index 8ce7d90a2..345c0182b 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -176,8 +176,10 @@ main (int argc, char* argv[]) if (jm->errors ()) { for (auto i: jm->get()) { if (i->finished_in_error()) { - cerr << i->error_summary() << "\n" - << i->error_details() << "\n"; + cerr << i->error_summary() << "\n"; + if (!i->error_details().empty()) { + cout << i->error_details() << "\n"; + } } } exit (EXIT_FAILURE);