summaryrefslogtreecommitdiffstats
path: root/cpukit/score/macros/rtems/score/object.inl
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-08 18:23:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-08 18:23:12 +0000
commitab377aa641b9152cbeabecb9d38c6b909c62f9b1 (patch)
tree8ca368623ef34b519b816026939865b4744b14dc /cpukit/score/macros/rtems/score/object.inl
parent2001-04-08 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-ab377aa641b9152cbeabecb9d38c6b909c62f9b1.tar.bz2
2001-04-08 Joel Sherrill <joel@OARcorp.com>
* macros/rtems/score/object.inl: Corrected arguments.
Diffstat (limited to 'cpukit/score/macros/rtems/score/object.inl')
-rw-r--r--cpukit/score/macros/rtems/score/object.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/macros/rtems/score/object.inl b/cpukit/score/macros/rtems/score/object.inl
index f806cadafc..d35748da8a 100644
--- a/cpukit/score/macros/rtems/score/object.inl
+++ b/cpukit/score/macros/rtems/score/object.inl
@@ -23,9 +23,9 @@
*/
#define _Objects_Build_id( _the_class, _node, _index ) \
- ( (( (Objects_Id) the_class ) << OBJECTS_CLASS_START_BIT) | \
- (( (Objects_Id) node ) << OBJECTS_NODE_START_BIT) | \
- (( (Objects_Id) index ) << OBJECTS_INDEX_START_BIT) )
+ ( (( (Objects_Id) (_the_class) ) << OBJECTS_CLASS_START_BIT) | \
+ (( (Objects_Id) (_node) ) << OBJECTS_NODE_START_BIT) | \
+ (( (Objects_Id) (_index) ) << OBJECTS_INDEX_START_BIT) )
/*PAGE
*