summaryrefslogtreecommitdiff
path: root/desktop/unx
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2015-10-04 11:42:20 +0200
committerDavid Tardon <dtardon@redhat.com>2015-10-05 07:58:02 +0000
commit2c96382b324bce348853dac5631daf680d739f98 (patch)
tree3b7c0e83f406ddbffca151d4fae34de774a92b76 /desktop/unx
parentcc8736ae602014297a594677a857cb2d789142ad (diff)
Add new line after error message during startup
Change-Id: Ieaf81a3b9491141805722ea60c6a8ddfe94ecda3 Reviewed-on: https://gerrit.libreoffice.org/19120 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'desktop/unx')
-rw-r--r--desktop/unx/source/start.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c
index b9aa8285e0e7..8803909adebf 100644
--- a/desktop/unx/source/start.c
+++ b/desktop/unx/source/start.c
@@ -158,7 +158,7 @@ child_spawn ( Args *args, sal_Bool bAllArgs, sal_Bool bWithStatus )
if ( nError != osl_Process_E_None )
{
- fprintf( stderr, "ERROR %d forking process", nError );
+ fprintf( stderr, "ERROR %d forking process\n", nError );
ustr_debug( "", pApp );
rtl_uString_release( pApp );
_exit (1);
@@ -497,7 +497,7 @@ send_args( int fd, rtl_uString *pCwdPath )
( RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR
| RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR ) ) )
{
- fprintf( stderr, "ERROR: cannot convert arguments to UTF-8" );
+ fprintf( stderr, "ERROR: cannot convert arguments to UTF-8\n" );
exit( 1 );
}
@@ -594,7 +594,7 @@ system_checks( void )
/* check proc is mounted - lots of things fail otherwise */
if ( stat( "/proc/version", &buf ) != 0 )
{
- fprintf( stderr, "ERROR: /proc not mounted - LibreOffice is unlikely to work well if at all" );
+ fprintf( stderr, "ERROR: /proc not mounted - LibreOffice is unlikely to work well if at all\n" );
exit( 1 );
}
#endif