From ca3c59fa6f7377d856d534016024484cdaa72999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rton=20Csord=C3=A1s?= Date: Mon, 8 Apr 2019 18:09:18 +0200 Subject: [PATCH] Add missing line feed to the generated plist output (#1792) Add missing line feed to the generated plist output because DOS uses carriage return and line feed as a line ending. --- lib/errorlogger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/errorlogger.cpp b/lib/errorlogger.cpp index 9ca737282..c9b545c56 100644 --- a/lib/errorlogger.cpp +++ b/lib/errorlogger.cpp @@ -732,7 +732,7 @@ std::string ErrorLogger::plistData(const ErrorLogger::ErrorMessage &msg) << " depth0\r\n" << " extended_message\r\n" << " " << ErrorLogger::toxml(message) << "\r\n" - << " message\r" + << " message\r\n" << " " << ErrorLogger::toxml(message) << "\r\n" << " \r\n"; }