summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/pppd/rtemspppd.c2
-rw-r--r--cpukit/telnetd/telnetd.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/pppd/rtemspppd.c b/cpukit/pppd/rtemspppd.c
index ac8055fc58..fbe03dd9dc 100644
--- a/cpukit/pppd/rtemspppd.c
+++ b/cpukit/pppd/rtemspppd.c
@@ -67,7 +67,7 @@ static rtems_task pppTask(rtems_task_argument arg)
int rtems_pppd_initialize(void)
{
int iReturn = (int)-1;
- rtems_unsigned32 priority = 100;
+ rtems_task_priority priority = 100;
rtems_status_code status;
rtems_name taskName;
diff --git a/cpukit/telnetd/telnetd.c b/cpukit/telnetd/telnetd.c
index bc8449ae96..bb6657a6c1 100644
--- a/cpukit/telnetd/telnetd.c
+++ b/cpukit/telnetd/telnetd.c
@@ -36,7 +36,7 @@
#include <stdio.h>
/***********************************************************/
rtems_id telnetd_task_id =0;
-rtems_unsigned32 telnetd_stack_size =16384;
+uint32_t telnetd_stack_size =16384;
rtems_task_priority telnetd_task_priority=100;
/***********************************************************/
rtems_task rtems_task_telnetd(rtems_task_argument task_argument) {