diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-15 18:35:21 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-15 18:35:21 +0200 |
commit | 62b751aa4bbe7cb4420f5f3523b0ab9f7602d5f9 (patch) | |
tree | 26862b046d6b000e175837c85f11308c78853363 /desktop/source/pkgchk/unopkg | |
parent | f96313d16163ce66c2fa04c99fa25b7c6da1c5b1 (diff) |
Missing newline at end of error message
Change-Id: I1c74042697f00c6ca6b43ea85e7aab47ad326f1c
Diffstat (limited to 'desktop/source/pkgchk/unopkg')
-rw-r--r-- | desktop/source/pkgchk/unopkg/unopkg_app.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/pkgchk/unopkg/unopkg_app.cxx b/desktop/source/pkgchk/unopkg/unopkg_app.cxx index b7f0e0e15288..c2141490cd33 100644 --- a/desktop/source/pkgchk/unopkg/unopkg_app.cxx +++ b/desktop/source/pkgchk/unopkg/unopkg_app.cxx @@ -576,7 +576,7 @@ extern "C" int unopkg_main() catch (const LockFileException & e) { if (!subcmd_gui) - dp_misc::writeConsoleError(e.Message); + dp_misc::writeConsoleError(e.Message + "\n"); bNoOtherErrorMsg = true; } catch (const ::com::sun::star::uno::Exception & e ) { |