engine: soundlib: snd_wav: fix clang warning

This commit is contained in:
Alibek Omarov 2024-10-28 15:32:25 +03:00
parent 3e7e81e078
commit d879e028cf

View file

@ -23,7 +23,7 @@ static const byte *iff_end;
static const byte *iff_lastChunk;
static int iff_chunkLen;
static int IsFourCC( const byte *ptr, const byte *fourcc )
static int IsFourCC( const void *ptr, const void *fourcc )
{
return 0 == memcmp( ptr, fourcc, 4 );
}