From 1d9403a3086e9e90544e94ce5a5b941306cf173b Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 6 Jul 2000 19:13:31 +0000 Subject: Removed unnecessary parentheses. --- c/src/exec/score/inline/rtems/score/object.inl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'c/src/exec/score/inline') diff --git a/c/src/exec/score/inline/rtems/score/object.inl b/c/src/exec/score/inline/rtems/score/object.inl index 1b435b4d4f..82a59b03d0 100644 --- a/c/src/exec/score/inline/rtems/score/object.inl +++ b/c/src/exec/score/inline/rtems/score/object.inl @@ -32,9 +32,9 @@ RTEMS_INLINE_ROUTINE Objects_Id _Objects_Build_id( unsigned32 index ) { - return ( (the_class << OBJECTS_CLASS_START_BIT) | - (node << OBJECTS_NODE_START_BIT) | - (index << OBJECTS_INDEX_START_BIT) ); + return (the_class << OBJECTS_CLASS_START_BIT) | + (node << OBJECTS_NODE_START_BIT) | + (index << OBJECTS_INDEX_START_BIT); } /*PAGE @@ -172,7 +172,7 @@ RTEMS_INLINE_ROUTINE Objects_Control *_Objects_Get_local_object( { if ( index > information->maximum ) return NULL; - return ( information->local_table[ index ] ); + return information->local_table[ index ]; } /*PAGE -- cgit v1.2.3