From b1274bd94c94520ed9402f85c949976d7008093e Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 30 Nov 2009 03:33:25 +0000 Subject: Whitespace removal. --- testsuites/psxtests/psxkey03/init.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'testsuites/psxtests/psxkey03/init.c') diff --git a/testsuites/psxtests/psxkey03/init.c b/testsuites/psxtests/psxkey03/init.c index 02d45da610..d69059072e 100644 --- a/testsuites/psxtests/psxkey03/init.c +++ b/testsuites/psxtests/psxkey03/init.c @@ -31,7 +31,7 @@ void *Test_Thread( puts( "Test_Thread - pthread_setspecific - OK" ); sc = pthread_setspecific( Key, key_value ); assert( !sc ); - + puts( "Test_Thread - pthread_exit to run key destructors - OK" ); return NULL; } @@ -45,13 +45,13 @@ void *POSIX_Init( struct timespec delay_request; puts( "\n\n*** TEST KEY 03 ***" ); - + /* * Key with NULL destructor */ puts( "Init - pthread_key_create with NULL destructor - OK" ); sc = pthread_key_create( &Key, NULL ); - assert( !sc ); + assert( !sc ); puts( "Init - pthread_create - OK" ); sc = pthread_create( &thread, NULL, Test_Thread, &sc ); @@ -73,7 +73,7 @@ void *POSIX_Init( destructor_ran = false; puts( "Init - pthread_key_create with non-NULL destructor - OK" ); sc = pthread_key_create( &Key, destructor ); - assert( !sc ); + assert( !sc ); puts( "Init - pthread_create - OK" ); sc = pthread_create( &thread, NULL, Test_Thread, NULL ); -- cgit v1.2.3