summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spstkalloc02
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-02-01 14:48:17 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-02-03 11:14:58 +0100
commit07d71279b46142147f73b00ea8b1731e868e484a (patch)
tree48d808279ef7f04eb00a9c57b86038cf943a61f5 /testsuites/sptests/spstkalloc02
parenttermios: Fix static device initalization (diff)
downloadrtems-07d71279b46142147f73b00ea8b1731e868e484a.tar.bz2
Prefix confdefs.h internal def with an underscore
Close #2895.
Diffstat (limited to 'testsuites/sptests/spstkalloc02')
-rw-r--r--testsuites/sptests/spstkalloc02/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/sptests/spstkalloc02/init.c b/testsuites/sptests/spstkalloc02/init.c
index 9ea5db74de..ff0351ac13 100644
--- a/testsuites/sptests/spstkalloc02/init.c
+++ b/testsuites/sptests/spstkalloc02/init.c
@@ -138,7 +138,7 @@ static rtems_task Init(rtems_task_argument argument)
#include <rtems/confdefs.h>
static char task_stack_space
- [CONFIGURE_TASK_STACK_FROM_ALLOCATOR(CONFIGURE_STACK_SPACE_SIZE)];
+ [CONFIGURE_TASK_STACK_FROM_ALLOCATOR(_CONFIGURE_STACK_SPACE_SIZE)];
static void task_stack_init(size_t stack_space_size)
{
@@ -149,7 +149,7 @@ static void task_stack_init(size_t stack_space_size)
STACK_HEAP_PAGE_SIZE
);
- rtems_test_assert(stack_space_size == CONFIGURE_STACK_SPACE_SIZE);
+ rtems_test_assert(stack_space_size == _CONFIGURE_STACK_SPACE_SIZE);
rtems_test_assert(ok);
}