summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-30 17:02:22 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-30 17:02:22 +0000
commit82567f54c4223b82edf5353709e6eae40c267544 (patch)
treea59d45085a2350867038e71bfe6f1403c5de166d /cpukit
parentremove depratated powerpc exception API (diff)
downloadrtems-82567f54c4223b82edf5353709e6eae40c267544.tar.bz2
2009-10-30 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/src/semcreate.c: Fix mismatched brace in multiprocessing code.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/rtems/src/semcreate.c2
2 files changed, 5 insertions, 1 deletions
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 <joel.sherrill@oarcorp.com>
+
+ * rtems/src/semcreate.c: Fix mismatched brace in multiprocessing code.
+
2009-10-30 Sebastian Huber <sebastian.huber@embedded-brains.de>
* 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