desktop/unx/source/start.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 2c96382b324bce348853dac5631daf680d739f98 Author: Arnaud Versini <[email protected]> Date: Sun Oct 4 11:42:20 2015 +0200 Add new line after error message during startup Change-Id: Ieaf81a3b9491141805722ea60c6a8ddfe94ecda3 Reviewed-on: https://gerrit.libreoffice.org/19120 Tested-by: Jenkins <[email protected]> Reviewed-by: David Tardon <[email protected]> diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c index b9aa828..8803909 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 _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
