diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-05-12 10:30:40 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-05-12 10:30:40 +0000 |
commit | d9133126d38f426831e2866edaf03c658f41481d (patch) | |
tree | 080fd80700e67785fd3b6f16faa2d04b7779d25e /libavformat/img2.c | |
parent | d9481eb7f32b11229bf9cd1e05dcf01c254c565c (diff) | |
download | ffmpeg-d9133126d38f426831e2866edaf03c658f41481d.tar.gz |
Replace some occurrences of 0 with CODEC_ID_NONE.
Fixes icc warning #188: enumerated type mixed with another type
Originally committed as revision 13135 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/img2.c')
-rw-r--r-- | libavformat/img2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c index 022c6a28c7..4b35454123 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -68,7 +68,7 @@ static const IdStrMap img_tags[] = { { CODEC_ID_SUNRAST , "im8"}, { CODEC_ID_SUNRAST , "im24"}, { CODEC_ID_SUNRAST , "sunras"}, - {0, NULL} + { CODEC_ID_NONE , NULL} }; static int sizes[][2] = { |