summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxcleanup/psxcleanup.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxcleanup/psxcleanup.c')
-rw-r--r--testsuites/psxtests/psxcleanup/psxcleanup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/psxtests/psxcleanup/psxcleanup.c b/testsuites/psxtests/psxcleanup/psxcleanup.c
index b1bc0a94f8..9005973a3c 100644
--- a/testsuites/psxtests/psxcleanup/psxcleanup.c
+++ b/testsuites/psxtests/psxcleanup/psxcleanup.c
@@ -155,7 +155,7 @@ void initialize_lock_t(lock_t *l)
{
pthread_mutexattr_t mutexattr; /* mutex attributes */
pthread_condattr_t condattr; /* condition attributes */
-
+
if (pthread_mutexattr_init (&mutexattr) != 0) {
perror ("Error in mutex attribute init\n");
}
@@ -250,12 +250,12 @@ void *POSIX_Init(
sleep(1);
/*************** ERROR CASES ***************/
- puts("Call pthread_cleanup_push with NULL handler");
+ puts("Call pthread_cleanup_push with NULL handler");
pthread_cleanup_push(NULL, NULL);
- puts("Call pthread_cleanup_pop with no push");
+ puts("Call pthread_cleanup_pop with no push");
pthread_cleanup_pop(1);
-
+
/*************** END OF TEST *****************/
puts( "*** END OF POSIX CLEANUP TEST ***\n" );
rtems_test_exit(0);