Fix a breaking build by removing const (#301)

pull/295/head^2
Aniruddha Kanhere 5 years ago committed by GitHub
parent 3f21957cc8
commit ea0033a85d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save