summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/object.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-08-29 21:54:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-08-29 21:54:36 +0000
commit0337a9c5e9ee9fed7affe916a9238ea86e62496d (patch)
treebebece7352ad0efd627bf7e97b5cf53669897eb6 /cpukit/score/include/rtems/score/object.h
parent2006-08-29 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-0337a9c5e9ee9fed7affe916a9238ea86e62496d.tar.bz2
2006-08-29 Joel Sherrill <joel@OARcorp.com>
* score/include/rtems/score/object.h: _Objects_Local_node is a uint16_t so cast the _Objects_Local_node constant to 1.
Diffstat (limited to 'cpukit/score/include/rtems/score/object.h')
-rw-r--r--cpukit/score/include/rtems/score/object.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/score/include/rtems/score/object.h
index 2a9c0b0280..1cc37c7965 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/score/include/rtems/score/object.h
@@ -355,9 +355,9 @@ typedef struct {
* The following is referenced to the node number of the local node.
*/
#if defined(RTEMS_MULTIPROCESSING)
-SCORE_EXTERN uint16_t _Objects_Local_node;
+SCORE_EXTERN uint16_t _Objects_Local_node;
#else
-#define _Objects_Local_node 1
+#define _Objects_Local_node ((uint16_t)1)
#endif
/**