summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerpriorityfree.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulerpriorityfree.c')
-rw-r--r--cpukit/score/src/schedulerpriorityfree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/src/schedulerpriorityfree.c b/cpukit/score/src/schedulerpriorityfree.c
index 5529f78d59..b2daa26493 100644
--- a/cpukit/score/src/schedulerpriorityfree.c
+++ b/cpukit/score/src/schedulerpriorityfree.c
@@ -25,11 +25,11 @@
#include <rtems/score/wkspace.h>
void _Scheduler_priority_Free (
- Scheduler_Control *base,
- Thread_Control *the_thread
+ const Scheduler_Control *scheduler,
+ Thread_Control *the_thread
)
{
- (void) base;
+ (void) scheduler;
_Workspace_Free( the_thread->scheduler_info );
}