summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/include/rtems/score/heap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/heap.h b/cpukit/score/include/rtems/score/heap.h
index f2a0fb73d7..60cb3be99d 100644
--- a/cpukit/score/include/rtems/score/heap.h
+++ b/cpukit/score/include/rtems/score/heap.h
@@ -360,17 +360,17 @@ typedef struct {
/**
* @brief Number of blocks of this type.
*/
- uint32_t number;
+ uintptr_t number;
/**
* @brief Largest block of this type.
*/
- uint32_t largest;
+ uintptr_t largest;
/**
* @brief Total size of the blocks of this type.
*/
- uint32_t total;
+ uintptr_t total;
} Heap_Information;
/**