From d57774732ab1f9216183119a8e171bec96bc2cbb Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 8 Dec 2008 09:25:44 +0100 Subject: [PATCH] avifil32: Remove unneeded casts of zero. --- dlls/avifil32/extrachunk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/avifil32/extrachunk.c b/dlls/avifil32/extrachunk.c index f875814d8d8..48ea77eb644 100644 --- a/dlls/avifil32/extrachunk.c +++ b/dlls/avifil32/extrachunk.c @@ -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 */