From 570045ed7f8e83d4980ea1550b7469eb8599ff7b Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 18 Jul 2013 14:26:58 +0200 Subject: score: Add const qualifier --- cpukit/score/src/coresem.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/src') diff --git a/cpukit/score/src/coresem.c b/cpukit/score/src/coresem.c index 14c706aa72..46d0334693 100644 --- a/cpukit/score/src/coresem.c +++ b/cpukit/score/src/coresem.c @@ -26,9 +26,9 @@ #include void _CORE_semaphore_Initialize( - CORE_semaphore_Control *the_semaphore, - CORE_semaphore_Attributes *the_semaphore_attributes, - uint32_t initial_value + CORE_semaphore_Control *the_semaphore, + const CORE_semaphore_Attributes *the_semaphore_attributes, + uint32_t initial_value ) { -- cgit v1.2.3