From 83d01d54d74735a825b28f145b7ad6c30c69473f Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 13 Mar 2007 05:38:21 +0000 Subject: =?UTF-8?q?2007-03-13=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * score/include/rtems/score/stack.h: Use size_t for stack sizes. --- cpukit/score/include/rtems/score/stack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/include/rtems/score/stack.h') diff --git a/cpukit/score/include/rtems/score/stack.h b/cpukit/score/include/rtems/score/stack.h index f7e3456569..a4ed0a74bc 100644 --- a/cpukit/score/include/rtems/score/stack.h +++ b/cpukit/score/include/rtems/score/stack.h @@ -43,7 +43,7 @@ extern "C" { */ typedef struct { /** This is the stack size. */ - uint32_t size; + size_t size; /** This is the low memory address of stack. */ void *area; } Stack_Control; -- cgit v1.2.3