summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-07-17 09:15:04 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-07-18 14:38:33 +0200
commit852d7059b6cbad029a8d18786d2aca30be95b706 (patch)
tree28eafec7213405c8c33fe8f1c77ea2dcee326317
parenttests: Use floating point task (diff)
downloadrtems-852d7059b6cbad029a8d18786d2aca30be95b706.tar.bz2
score: Fix warning
Update #3059.
-rw-r--r--cpukit/score/src/schedulergetaffinity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/schedulergetaffinity.c b/cpukit/score/src/schedulergetaffinity.c
index 8425a7fcf6..b405d2ba1f 100644
--- a/cpukit/score/src/schedulergetaffinity.c
+++ b/cpukit/score/src/schedulergetaffinity.c
@@ -26,7 +26,7 @@ bool _Scheduler_Get_affinity(
{
const Scheduler_Control *scheduler;
ISR_lock_Context lock_context;
- Processor_mask *affinity;
+ const Processor_mask *affinity;
Processor_mask_Copy_status status;
scheduler = _Thread_Scheduler_get_home( the_thread );