diff options
author | David Tardon <dtardon@redhat.com> | 2016-11-13 19:13:36 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-11-13 19:13:36 +0100 |
commit | 3838475c2fbeb3c84c2ee96a1845893b20d9495a (patch) | |
tree | bc651cd97a909ec253655decffd9f7d61517d413 /desktop/source/app/sofficemain.cxx | |
parent | 27a165cfc97f004ecf5d911a3adc3b5ced36f7fd (diff) |
drop extra semicolons
Change-Id: Ie6713d1bdf0010e5bc0bb70ca995c4dd36408673
Diffstat (limited to 'desktop/source/app/sofficemain.cxx')
-rw-r--r-- | desktop/source/app/sofficemain.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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<std::codecvt_utf8<wchar_t>> 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; |