From aad611b8098265c645937c65d91f906f9720c129 Mon Sep 17 00:00:00 2001 From: RichardBarry Date: Wed, 22 Aug 2007 16:56:05 +0000 Subject: Changed a couple of casts to remove compiler warnings. git-svn-id: https://freertos.svn.sourceforge.net/svnroot/freertos/trunk@104 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Source/queue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/queue.c') diff --git a/Source/queue.c b/Source/queue.c index 0431715d..5bf3b405 100644 --- a/Source/queue.c +++ b/Source/queue.c @@ -546,7 +546,7 @@ signed portCHAR *pcOriginalReadPosition; if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) { portENTER_CRITICAL(); - vTaskPriorityInherit( ( xTaskHandle * const ) pxQueue->pxMutexHolder ); + vTaskPriorityInherit( ( void * const ) pxQueue->pxMutexHolder ); portEXIT_CRITICAL(); } } @@ -719,7 +719,7 @@ static void prvCopyDataToQueue( xQUEUE *pxQueue, const void *pvItemToQueue, port if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) { /* The mutex is no longer being held. */ - vTaskPriorityDisinherit( ( xTaskHandle * const ) pxQueue->pxMutexHolder ); + vTaskPriorityDisinherit( ( void * const ) pxQueue->pxMutexHolder ); } } #endif -- cgit v1.2.3