From 0dd89666380be935d5b3b52dce09bcd09688d267 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Tue, 10 Feb 2009 09:12:52 +0000 Subject: [PATCH] Silence one icc warning: variable "..." is used before its value is set Originally committed as revision 17127 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/common.h b/libavutil/common.h index 506c68f70..d8f2f6414 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 -- 2.11.0