avifil32: Remove unneeded casts of zero.

oldstable
Francois Gouget 2008-12-08 09:25:44 +01:00 committed by Alexandre Julliard
parent c73631280b
commit d57774732a
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ HRESULT FindChunkAndKeepExtras(LPEXTRACHUNKS extra,HMMIO hmmio,MMCKINFO *lpck,
/* Have we found what we search for? */
if ((lpck->ckid == ckid) &&
(fccType == (FOURCC)0 || lpck->fccType == fccType))
(fccType == 0 || lpck->fccType == fccType))
return AVIERR_OK;
/* Skip padding chunks, the others put into the extrachunk-structure */