Rewrite cast of (uint*) to standard type uint32_t

s/(\s*uint\s*\*\s*)/(uint32_t *)/g
This commit is contained in:
Kp 2016-06-05 01:04:25 +00:00
parent aeebffccc0
commit badf0f4f90

View file

@ -3875,7 +3875,7 @@ void multi_send_sound_function (char whichfunc, char sound)
multibuf[2]=whichfunc; count++;
if (!words_bigendian)
{
*(uint *)(multibuf+count)=sound; count++;
*(uint32_t *)(multibuf+count)=sound; count++;
}
else
{