diff riff.c @ 4129:0116c7e7e3ef libavformat

Fix two identical warnings when compiling riff.c and nuv.c with icc: warning #188: enumerated type mixed with another type
author cehoyos
date Mon, 22 Dec 2008 22:12:44 +0000
parents 05d41346b964
children 22a0dae5e6ae
line wrap: on
line diff
--- a/riff.c	Mon Dec 22 22:10:07 2008 +0000
+++ b/riff.c	Mon Dec 22 22:12:44 2008 +0000
@@ -425,9 +425,9 @@
 }
 
 
-int wav_codec_get_id(unsigned int tag, int bps)
+enum CodecID wav_codec_get_id(unsigned int tag, int bps)
 {
-    int id;
+    enum CodecID id;
     id = codec_get_id(codec_wav_tags, tag);
     if (id <= 0)
         return id;