summaryrefslogtreecommitdiff
path: root/desktop/source/app/sofficemain.cxx
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2016-11-13 19:13:36 +0100
committerDavid Tardon <dtardon@redhat.com>2016-11-13 19:13:36 +0100
commit3838475c2fbeb3c84c2ee96a1845893b20d9495a (patch)
treebc651cd97a909ec253655decffd9f7d61517d413 /desktop/source/app/sofficemain.cxx
parent27a165cfc97f004ecf5d911a3adc3b5ced36f7fd (diff)
drop extra semicolons
Change-Id: Ie6713d1bdf0010e5bc0bb70ca995c4dd36408673
Diffstat (limited to 'desktop/source/app/sofficemain.cxx')
-rw-r--r--desktop/source/app/sofficemain.cxx4
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;