diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-02-10 09:12:52 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-02-10 09:12:52 +0000 |
commit | 0dd89666380be935d5b3b52dce09bcd09688d267 (patch) | |
tree | b7c74d819ce3ede124b1982ede0b8e5386ea2034 | |
parent | 99b170f8964bdb3ae4ce6f0f98e669fb99609ef8 (diff) | |
download | ffmpeg-0dd89666380be935d5b3b52dce09bcd09688d267.tar.gz |
Silence one icc warning:
variable "..." is used before its value is set
Originally committed as revision 17127 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index 506c68f701..d8f2f6414f 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -102,7 +102,7 @@ #endif #ifndef av_uninit -#if defined(__GNUC__) +#if defined(__GNUC__) && !defined(__ICC) # define av_uninit(x) x=x #else # define av_uninit(x) x |