OSDN Git Service

Silence one icc warning:
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Tue, 10 Feb 2009 09:12:52 +0000 (09:12 +0000)
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>
Tue, 10 Feb 2009 09:12:52 +0000 (09:12 +0000)
variable "..." is used before its value is set

Originally committed as revision 17127 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/common.h

index 506c68f..d8f2f64 100644 (file)
 #endif
 
 #ifndef av_uninit
-#if defined(__GNUC__)
+#if defined(__GNUC__) && !defined(__ICC)
 #    define av_uninit(x) x=x
 #else
 #    define av_uninit(x) x