Added missing newlines to keep verbose output more readable.

This commit is contained in:
kaesa 2025-02-13 11:34:22 +02:00
parent 5edf870c13
commit 883ae67a56

View File

@ -1132,7 +1132,7 @@ DCPProfile::DCPProfile(const Glib::ustring& filename) :
if (file == nullptr) { if (file == nullptr) {
if (settings->verbose) { if (settings->verbose) {
printf ("Unable to load DCP profile '%s' !", filename.c_str()); printf ("Unable to load DCP profile '%s' !\n", filename.c_str());
} }
return; return;
} }
@ -1140,7 +1140,7 @@ DCPProfile::DCPProfile(const Glib::ustring& filename) :
DCPMetadata md(file.get()); DCPMetadata md(file.get());
if (!md.parse()) { if (!md.parse()) {
if (settings->verbose) { if (settings->verbose) {
printf ("Unable to load DCP profile '%s'.", filename.c_str()); printf ("Unable to load DCP profile '%s'.\n", filename.c_str());
} }
return; return;
} }