From 93934f886f919d5e6fcc33cf2fab2f36cd9e3d66 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 22 Aug 2017 14:18:09 +0200 Subject: heap: Fix integer types Update #3082. --- cpukit/score/include/rtems/score/heap.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score') 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; /** -- cgit v1.2.3