mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Changed a couple of casts to remove compiler warnings.
This commit is contained in:
parent
60338bd872
commit
86f4e8b4a0
|
@ -546,7 +546,7 @@ signed portCHAR *pcOriginalReadPosition;
|
||||||
if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )
|
if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )
|
||||||
{
|
{
|
||||||
portENTER_CRITICAL();
|
portENTER_CRITICAL();
|
||||||
vTaskPriorityInherit( ( xTaskHandle * const ) pxQueue->pxMutexHolder );
|
vTaskPriorityInherit( ( void * const ) pxQueue->pxMutexHolder );
|
||||||
portEXIT_CRITICAL();
|
portEXIT_CRITICAL();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -719,7 +719,7 @@ static void prvCopyDataToQueue( xQUEUE *pxQueue, const void *pvItemToQueue, port
|
||||||
if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )
|
if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )
|
||||||
{
|
{
|
||||||
/* The mutex is no longer being held. */
|
/* The mutex is no longer being held. */
|
||||||
vTaskPriorityDisinherit( ( xTaskHandle * const ) pxQueue->pxMutexHolder );
|
vTaskPriorityDisinherit( ( void * const ) pxQueue->pxMutexHolder );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue