Corrected spacing.

This commit is contained in:
Joel Sherrill
1999-11-02 15:57:43 +00:00
parent 3f421dab80
commit af10d3ef5d
2 changed files with 4 additions and 4 deletions
@@ -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;
}
+2 -2
View File
@@ -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;
}