* Fix cast alignment warning
Without this change, the code produces the following warning when
compiled with `-Wcast-align` flag:
```
cast increases required alignment of target type
```
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
prvInitialiseNewStreamBuffer((StreamBuffer_t*)pucAllocatedMemory,/* Structure at the start of the allocated memory. *//*lint !e9087 Safe cast as allocated memory is aligned. *//*lint !e826 Area is not too small and alignment is guaranteed provided malloc() behaves as expected and returns aligned buffer. */
pucAllocatedMemory+sizeof(StreamBuffer_t),/* Storage area follows. *//*lint !e9016 Indexing past structure valid for uint8_t pointer, also storage area has no alignment requirement. */
prvInitialiseNewStreamBuffer((StreamBuffer_t*)pvAllocatedMemory,/* Structure at the start of the allocated memory. *//*lint !e9087 Safe cast as allocated memory is aligned. *//*lint !e826 Area is not too small and alignment is guaranteed provided malloc() behaves as expected and returns aligned buffer. */
((uint8_t*)pvAllocatedMemory)+sizeof(StreamBuffer_t),/* Storage area follows. *//*lint !e9016 Indexing past structure valid for uint8_t pointer, also storage area has no alignment requirement. */