mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -04:00
Remove casts that were generating warnings (even though the casts were added to remove warnings with some compilers).
This commit is contained in:
parent
61efe2504c
commit
79dd981500
2 changed files with 3 additions and 3 deletions
|
@ -1339,7 +1339,7 @@ unsigned portBASE_TYPE uxNumberOfTasks;
|
|||
{
|
||||
portENTER_CRITICAL();
|
||||
{
|
||||
pcTraceBuffer = ( volatile signed portCHAR * volatile )pcBuffer;
|
||||
pcTraceBuffer = ( signed portCHAR * )pcBuffer;
|
||||
pcTraceBufferStart = pcBuffer;
|
||||
pcTraceBufferEnd = pcBuffer + ( ulBufferSize - tskSIZE_OF_EACH_TRACE_LINE );
|
||||
xTracing = pdTRUE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue