avifil32: Remove unneeded casts of zero.

Francois Gouget fgouget at free.fr
Mon Dec 8 02:25:44 CST 2008


---
 dlls/avifil32/extrachunk.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/avifil32/extrachunk.c b/dlls/avifil32/extrachunk.c
index f875814..48ea77e 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 */
-- 
1.5.6.5




More information about the wine-patches mailing list