summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectgetnoprotection.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/objectgetnoprotection.c')
-rw-r--r--cpukit/score/src/objectgetnoprotection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/objectgetnoprotection.c b/cpukit/score/src/objectgetnoprotection.c
index 8dfd5b9617..667eae291c 100644
--- a/cpukit/score/src/objectgetnoprotection.c
+++ b/cpukit/score/src/objectgetnoprotection.c
@@ -62,7 +62,7 @@ Objects_Control *_Objects_Get_no_protection(
/* index = (uint16_t ) id; */
#endif
- if ( information->maximum >= index ) {
+ if ( information->maximum >= index ) {
if ( (the_object = information->local_table[ index ]) != NULL ) {
*location = OBJECTS_LOCAL;
return the_object;
@@ -72,7 +72,7 @@ Objects_Control *_Objects_Get_no_protection(
}
*location = OBJECTS_ERROR;
-/*
+/*
* Not supported for multiprocessing
*/
#if 0 && defined(RTEMS_MULTIPROCESSING)