summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-11 22:37:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-11 22:37:38 +0000
commit8f6b7b5122519871f9287bc50a014704f5c2b220 (patch)
treea438bb27ef81e5bfe36ea9e74687ce5c7c76836c /cpukit/rtems
parent2009-10-11 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-8f6b7b5122519871f9287bc50a014704f5c2b220.tar.bz2
2009-10-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* posix/src/alarm.c: If 0 seconds do not insert timer. * rtems/src/regionextend.c: Eliminate warning. Use default else.
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/src/regionextend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/rtems/src/regionextend.c b/cpukit/rtems/src/regionextend.c
index 15134237ac..6d181a09dc 100644
--- a/cpukit/rtems/src/regionextend.c
+++ b/cpukit/rtems/src/regionextend.c
@@ -77,7 +77,7 @@ rtems_status_code rtems_region_extend(
return_status = RTEMS_SUCCESSFUL;
} else if ( heap_status == HEAP_EXTEND_ERROR ) {
return_status = RTEMS_INVALID_ADDRESS;
- } else if ( heap_status == HEAP_EXTEND_NOT_IMPLEMENTED ) {
+ } else /* if ( heap_status == HEAP_EXTEND_NOT_IMPLEMENTED ) */ {
return_status = RTEMS_NOT_IMPLEMENTED;
}
break;