summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerpriorityextract.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerpriorityextract.c')
-rw-r--r--cpukit/score/src/schedulerpriorityextract.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/src/schedulerpriorityextract.c b/cpukit/score/src/schedulerpriorityextract.c
index 492c537a73..84dbaa4280 100644
--- a/cpukit/score/src/schedulerpriorityextract.c
+++ b/cpukit/score/src/schedulerpriorityextract.c
@@ -22,9 +22,9 @@
#include <rtems/score/schedulerpriorityimpl.h>
void _Scheduler_priority_Extract(
- Scheduler_Control *base,
- Thread_Control *the_thread
+ const Scheduler_Control *scheduler,
+ Thread_Control *the_thread
)
{
- _Scheduler_priority_Extract_body( base, the_thread );
+ _Scheduler_priority_Extract_body( scheduler, the_thread );
}