From 3838475c2fbeb3c84c2ee96a1845893b20d9495a Mon Sep 17 00:00:00 2001 From: David Tardon Date: Sun, 13 Nov 2016 19:13:36 +0100 Subject: drop extra semicolons Change-Id: Ie6713d1bdf0010e5bc0bb70ca995c4dd36408673 --- desktop/source/app/sofficemain.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop/source/app/sofficemain.cxx') diff --git a/desktop/source/app/sofficemain.cxx b/desktop/source/app/sofficemain.cxx index 755da5920e09..b0d155b54c65 100644 --- a/desktop/source/app/sofficemain.cxx +++ b/desktop/source/app/sofficemain.cxx @@ -81,7 +81,7 @@ static bool dumpCallback(const google_breakpad::MinidumpDescriptor& descriptor, { std::string ini_path = CrashReporter::getIniFileName(); std::ofstream minidump_file(ini_path, std::ios_base::app); - minidump_file << "DumpFile=" << descriptor.path() << "\n";; + minidump_file << "DumpFile=" << descriptor.path() << "\n"; minidump_file.close(); SAL_WARN("desktop", "minidump generated: " << descriptor.path()); return succeeded; @@ -97,7 +97,7 @@ static bool dumpCallback(const wchar_t* path, const wchar_t* id, // TODO: moggi: can we avoid this conversion std::wstring_convert> conv1; std::string aPath = conv1.to_bytes(std::wstring(path)) + conv1.to_bytes(std::wstring(id)) + ".dmp"; - minidump_file << "DumpFile=" << aPath << "\n";; + minidump_file << "DumpFile=" << aPath << "\n"; minidump_file.close(); SAL_WARN("desktop", "minidump generated: " << aPath); return succeeded; -- cgit