[FFmpeg-cvslog] r17127 - trunk/libavutil/common.h

cehoyos subversion
Tue Feb 10 10:12:52 CET 2009


Author: cehoyos
Date: Tue Feb 10 10:12:52 2009
New Revision: 17127

Log:
Silence one icc warning:
variable "..." is used before its value is set

Modified:
   trunk/libavutil/common.h

Modified: trunk/libavutil/common.h
==============================================================================
--- trunk/libavutil/common.h	Tue Feb 10 10:02:29 2009	(r17126)
+++ trunk/libavutil/common.h	Tue Feb 10 10:12:52 2009	(r17127)
@@ -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




More information about the ffmpeg-cvslog mailing list