From 1de949a8bda2912d663ad3b296fec0f1a9b03c46 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 30 Nov 2009 15:49:52 +0000 Subject: Whitespace removal. --- cpukit/libgnat/ada_intrsupp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cpukit/libgnat') diff --git a/cpukit/libgnat/ada_intrsupp.c b/cpukit/libgnat/ada_intrsupp.c index 9bec384127..8cb4ab339f 100644 --- a/cpukit/libgnat/ada_intrsupp.c +++ b/cpukit/libgnat/ada_intrsupp.c @@ -13,7 +13,7 @@ rtems_id __gnat_binary_semaphore_create(void) 0, &semaphore ); - if ( status != RTEMS_SUCCESSFUL ) + if ( status != RTEMS_SUCCESSFUL ) printk( "__gnat_binary_semaphore_create failed %d\n", status ); #if defined(GNAT_DEBUG) @@ -33,7 +33,7 @@ int __gnat_binary_semaphore_delete( #endif status = rtems_semaphore_delete( semaphore ); - if ( status != RTEMS_SUCCESSFUL ) + if ( status != RTEMS_SUCCESSFUL ) printk( "__gnat_binary_semaphore_delete failed %d\n", status ); return 0; @@ -50,7 +50,7 @@ int __gnat_binary_semaphore_obtain( #endif status = rtems_semaphore_obtain( semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT ); - if ( status != RTEMS_SUCCESSFUL ) + if ( status != RTEMS_SUCCESSFUL ) printk( "__gnat_binary_semaphore_obtain failed %d\n", status ); return 0; @@ -67,7 +67,7 @@ int __gnat_binary_semaphore_release( #endif status = rtems_semaphore_release( semaphore ); - if ( status != RTEMS_SUCCESSFUL ) + if ( status != RTEMS_SUCCESSFUL ) printk( "__gnat_binary_semaphore_release failed %d\n", status ); return 0; @@ -82,7 +82,7 @@ int __gnat_binary_semaphore_flush( printk( "__gnat_binary_semaphore_flush\n" ); status = rtems_semaphore_flush( semaphore ); - if ( status != RTEMS_SUCCESSFUL ) + if ( status != RTEMS_SUCCESSFUL ) printk( "__gnat_binary_semaphore_flush failed %d\n", status ); return 0; -- cgit v1.2.3