summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/chg_pri.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/chg_pri.c')
-rw-r--r--cpukit/itron/src/chg_pri.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/cpukit/itron/src/chg_pri.c b/cpukit/itron/src/chg_pri.c
index efbd18ec71..a548535db4 100644
--- a/cpukit/itron/src/chg_pri.c
+++ b/cpukit/itron/src/chg_pri.c
@@ -34,13 +34,13 @@ ER chg_pri(
{
register Thread_Control *the_thread;
Objects_Locations location;
- Priority_Control new_priority;
+ Priority_Control new_priority;
the_thread = _ITRON_Task_Get( tskid, &location );
switch ( location ) {
case OBJECTS_REMOTE:
case OBJECTS_ERROR:
- return _ITRON_Task_Clarify_get_id_error( tskid );
+ return _ITRON_Task_Clarify_get_id_error( tskid );
case OBJECTS_LOCAL:
if (_States_Is_dormant( the_thread->current_state ))
@@ -66,5 +66,3 @@ ER chg_pri(
_ITRON_return_errorno( E_OK );
}
-
-