From db0e05ff6f6f9d3738c10c80bf5faaea2a0a4fa8 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 23 Aug 2013 11:57:11 +0200 Subject: score: Delete unused function parameter --- cpukit/score/src/threadqextract.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/src/threadqextract.c') diff --git a/cpukit/score/src/threadqextract.c b/cpukit/score/src/threadqextract.c index b2da4f0f87..9ea9cba89a 100644 --- a/cpukit/score/src/threadqextract.c +++ b/cpukit/score/src/threadqextract.c @@ -31,8 +31,8 @@ bool _Thread_queue_Extract( * is a macro and the underlying methods do not have the same signature. */ if ( the_thread_queue->discipline == THREAD_QUEUE_DISCIPLINE_PRIORITY ) - return _Thread_queue_Extract_priority( the_thread_queue, the_thread ); + return _Thread_queue_Extract_priority( the_thread ); else /* must be THREAD_QUEUE_DISCIPLINE_FIFO */ - return _Thread_queue_Extract_fifo( the_thread_queue, the_thread ); + return _Thread_queue_Extract_fifo( the_thread ); } -- cgit v1.2.3