I have this warning on my cast line code:
dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict- aliasing]
unsigned char buffer[64];
...
unsigned int value = *(unsigned int*)buffer;
How to fix this warning ?
Thanks for your help !