summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerpriorityschedule.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerpriorityschedule.c')
-rw-r--r--cpukit/score/src/schedulerpriorityschedule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/src/schedulerpriorityschedule.c b/cpukit/score/src/schedulerpriorityschedule.c
index aa6c09a505..ffc1351bba 100644
--- a/cpukit/score/src/schedulerpriorityschedule.c
+++ b/cpukit/score/src/schedulerpriorityschedule.c
@@ -21,9 +21,9 @@
#include <rtems/score/schedulerpriorityimpl.h>
void _Scheduler_priority_Schedule(
- Scheduler_Control *base,
- Thread_Control *the_thread
+ const Scheduler_Control *scheduler,
+ Thread_Control *the_thread
)
{
- _Scheduler_priority_Schedule_body( base, the_thread, false );
+ _Scheduler_priority_Schedule_body( scheduler, the_thread, false );
}