From a3b2830e0f610d4104d1abfc6232da51b0b9ac69 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sat, 24 Oct 2009 05:51:06 +0000 Subject: Fix broken prints. --- testsuites/samples/fileio/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuites/samples') diff --git a/testsuites/samples/fileio/init.c b/testsuites/samples/fileio/init.c index a8504c5a82..44daef99d3 100644 --- a/testsuites/samples/fileio/init.c +++ b/testsuites/samples/fileio/init.c @@ -109,14 +109,14 @@ void writeFile( int sc; sc = setuid(0); if ( sc ) { - printf( "setuid failed: %s:\n", name, strerror(errno) ); + printf( "setuid failed: %s: %s\n", name, strerror(errno) ); } rtems_shell_write_file( name, contents ); sc = chmod ( name, mode ); if ( sc ) { - printf( "chmod %s: %s:\n", name, strerror(errno) ); + printf( "chmod %s: %s\n", name, strerror(errno) ); } } -- cgit v1.2.3