summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 15:57:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 15:57:43 +0000
commitaf10d3ef5d921d04ec4e3870e229c2c50620d3ce (patch)
tree7a129a1c7a27e01ff6fbe2c7279fb6421da7ee4e
parentAdded message queues and semaphores. (diff)
downloadrtems-af10d3ef5d921d04ec4e3870e229c2c50620d3ce.tar.bz2
Corrected spacing.
-rw-r--r--c/src/exec/score/inline/rtems/score/object.inl4
-rw-r--r--cpukit/score/inline/rtems/score/object.inl4
2 files changed, 4 insertions, 4 deletions
diff --git a/c/src/exec/score/inline/rtems/score/object.inl b/c/src/exec/score/inline/rtems/score/object.inl
index ce149f33d8..73a496d30c 100644
--- a/c/src/exec/score/inline/rtems/score/object.inl
+++ b/c/src/exec/score/inline/rtems/score/object.inl
@@ -171,7 +171,7 @@ RTEMS_INLINE_ROUTINE Objects_Control *_Objects_Get_local_object(
unsigned32 index
)
{
- if ( index > information->maximum)
+ if ( index > information->maximum )
return NULL;
return ( information->local_table[ index ] );
}
@@ -192,7 +192,7 @@ RTEMS_INLINE_ROUTINE void _Objects_Set_local_object(
Objects_Control *the_object
)
{
- if ( index <= information->maximum)
+ if ( index <= information->maximum )
information->local_table[ index ] = the_object;
}
diff --git a/cpukit/score/inline/rtems/score/object.inl b/cpukit/score/inline/rtems/score/object.inl
index ce149f33d8..73a496d30c 100644
--- a/cpukit/score/inline/rtems/score/object.inl
+++ b/cpukit/score/inline/rtems/score/object.inl
@@ -171,7 +171,7 @@ RTEMS_INLINE_ROUTINE Objects_Control *_Objects_Get_local_object(
unsigned32 index
)
{
- if ( index > information->maximum)
+ if ( index > information->maximum )
return NULL;
return ( information->local_table[ index ] );
}
@@ -192,7 +192,7 @@ RTEMS_INLINE_ROUTINE void _Objects_Set_local_object(
Objects_Control *the_object
)
{
- if ( index <= information->maximum)
+ if ( index <= information->maximum )
information->local_table[ index ] = the_object;
}