summaryrefslogtreecommitdiffstats
path: root/cpukit/score/macros/rtems/score/object.inl
diff options
context:
space:
mode:
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 37ee26c4de..79702927f9 100644
--- a/cpukit/score/macros/rtems/score/object.inl
+++ b/cpukit/score/macros/rtems/score/object.inl
@@ -43,7 +43,7 @@
*/
#define _Objects_Get_class( _id ) \
- (unsigned32) \
+ (uint32_t ) \
(((_id) >> OBJECTS_CLASS_START_BIT) & OBJECTS_CLASS_VALID_BITS)
/*PAGE
@@ -145,7 +145,7 @@
#define _Objects_Open( _information, _the_object, _name ) \
do { \
- unsigned32 _index; \
+ uint32_t _index; \
\
_index = _Objects_Get_index( (_the_object)->id ); \
(_information)->local_table[ _index ] = (_the_object); \
@@ -167,7 +167,7 @@
#define _Objects_Close( _information, _the_object ) \
do { \
- unsigned32 _index; \
+ uint32_t _index; \
\
_index = _Objects_Get_index( (_the_object)->id ); \
(_information)->local_table[ _index ] = (Objects_Control *) NULL; \