summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm02
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-09 21:24:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-09 21:24:06 +0000
commit1055ce20fce7730cd46bb41230252cbaf1acce83 (patch)
treef1bafa58b57cfe61d7acf5947f4d1fb337e72c9e /testsuites/tmtests/tm02
parent2009-05-09 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-1055ce20fce7730cd46bb41230252cbaf1acce83.tar.bz2
Fix most warnings.
Diffstat (limited to 'testsuites/tmtests/tm02')
-rw-r--r--testsuites/tmtests/tm02/task1.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuites/tmtests/tm02/task1.c b/testsuites/tmtests/tm02/task1.c
index 618aea8a14..297c58d3ec 100644
--- a/testsuites/tmtests/tm02/task1.c
+++ b/testsuites/tmtests/tm02/task1.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -30,7 +30,7 @@ rtems_task Low_task(
int operation_count = OPERATION_COUNT;
-void test_init();
+void test_init(void);
rtems_task Init(
rtems_task_argument argument
@@ -48,10 +48,10 @@ rtems_task Init(
directive_failed( status, "rtems_task_delete" );
}
-void test_init()
+void test_init(void)
{
rtems_status_code status;
- uint32_t index;
+ int index;
rtems_task_priority priority;
priority = 2;
@@ -71,8 +71,8 @@ void test_init()
status = rtems_task_start( High_id, High_task, 0 );
directive_failed( status, "rtems_task_start of high task" );
- if ( OPERATION_COUNT > RTEMS_MAXIMUM_PRIORITY - 2 )
- operation_count = RTEMS_MAXIMUM_PRIORITY - 2;
+ if ( OPERATION_COUNT > RTEMS_MAXIMUM_PRIORITY - 2u )
+ operation_count = (int) (RTEMS_MAXIMUM_PRIORITY - 2u);
for ( index=2 ; index < operation_count ; index++ ) {
status = rtems_task_create(
rtems_build_name( 'M', 'I', 'D', ' ' ),