Fix a breaking build by removing const (#301)

This commit is contained in:
Aniruddha Kanhere
2020-09-25 11:08:35 -07:00
committed by GitHub
parent 3f21957cc8
commit ea0033a85d

View File

@ -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
{