engine: soundlib: snd_wav: fix clang warning
This commit is contained in:
parent
3e7e81e078
commit
d879e028cf
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ static const byte *iff_end;
|
||||||
static const byte *iff_lastChunk;
|
static const byte *iff_lastChunk;
|
||||||
static int iff_chunkLen;
|
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 );
|
return 0 == memcmp( ptr, fourcc, 4 );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue