summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score/priority.inl
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-10-02 21:03:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-10-02 21:03:44 +0000
commit12a0a5251861d04d8bb20c9eb19694504ca5358b (patch)
tree1851da32cd23d9e75ac66675a66e78c9e42f549f /cpukit/score/inline/rtems/score/priority.inl
parent2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-12a0a5251861d04d8bb20c9eb19694504ca5358b.tar.bz2
2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/inline/rtems/score/priority.inl: Use simple integer as loop counter.
Diffstat (limited to 'cpukit/score/inline/rtems/score/priority.inl')
-rw-r--r--cpukit/score/inline/rtems/score/priority.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/inline/rtems/score/priority.inl b/cpukit/score/inline/rtems/score/priority.inl
index 660c17a291..6c1b824021 100644
--- a/cpukit/score/inline/rtems/score/priority.inl
+++ b/cpukit/score/inline/rtems/score/priority.inl
@@ -36,7 +36,7 @@
RTEMS_INLINE_ROUTINE void _Priority_Handler_initialization( void )
{
- size_t index;
+ int index;
_Priority_Major_bit_map = 0;
for ( index=0 ; index <16 ; index++ )