summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/rtems++/Task3.cc
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/rtems++/Task3.cc')
-rw-r--r--testsuites/libtests/rtems++/Task3.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/libtests/rtems++/Task3.cc b/testsuites/libtests/rtems++/Task3.cc
index 658b7fee66..9c94c59640 100644
--- a/testsuites/libtests/rtems++/Task3.cc
+++ b/testsuites/libtests/rtems++/Task3.cc
@@ -22,7 +22,7 @@
Task3::Task3(const char* name,
const rtems_task_priority initial_priority,
- const rtems_unsigned32 stack_size)
+ const uint32_t stack_size)
: rtemsTask(name, initial_priority, stack_size, RTEMS_NO_PREEMPT)
{
}
@@ -44,7 +44,7 @@ void Task3::screen6()
{
char in[100];
char out[100];
- rtems_unsigned32 size;
+ uint32_t size;
bool loopback = true;
while (loopback)