mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-17 02:07:48 -04:00
Fix a breaking build by removing const (#301)
This commit is contained in:
parent
3f21957cc8
commit
ea0033a85d
1 changed files with 1 additions and 1 deletions
|
@ -959,7 +959,7 @@ NetworkBufferDescriptor_t *pxResult;
|
|||
/* The following statement may trigger a:
|
||||
warning: cast increases required alignment of target type [-Wcast-align].
|
||||
It has been confirmed though that the alignment is suitable. */
|
||||
pxResult = * ( ( const NetworkBufferDescriptor_t **) pucBuffer );
|
||||
pxResult = * ( ( NetworkBufferDescriptor_t ** ) pucBuffer );
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue