From 82567f54c4223b82edf5353709e6eae40c267544 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 30 Oct 2009 17:02:22 +0000 Subject: [PATCH] 2009-10-30 Joel Sherrill * rtems/src/semcreate.c: Fix mismatched brace in multiprocessing code. --- cpukit/ChangeLog | 4 ++++ cpukit/rtems/src/semcreate.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 730f361463..2b8cfee4a3 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2009-10-30 Joel Sherrill + + * rtems/src/semcreate.c: Fix mismatched brace in multiprocessing code. + 2009-10-30 Sebastian Huber * libblock/src/bdbuf.c: Fixed group usage counting. See test diff --git a/cpukit/rtems/src/semcreate.c b/cpukit/rtems/src/semcreate.c index 85d1c15bc9..27da93a603 100644 --- a/cpukit/rtems/src/semcreate.c +++ b/cpukit/rtems/src/semcreate.c @@ -95,7 +95,7 @@ rtems_status_code rtems_semaphore_create( return RTEMS_MP_NOT_CONFIGURED; if ( _Attributes_Is_inherit_priority( attribute_set ) || - _Attributes_Is_priority_ceiling( attribute_set ) ) { + _Attributes_Is_priority_ceiling( attribute_set ) ) return RTEMS_NOT_DEFINED; } else