Skip to content
Snippets Groups Projects
Commit 0dd89666 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos
Browse files

Silence one icc warning:

variable "..." is used before its value is set

Originally committed as revision 17127 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 99b170f8
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
#endif #endif
#ifndef av_uninit #ifndef av_uninit
#if defined(__GNUC__) #if defined(__GNUC__) && !defined(__ICC)
# define av_uninit(x) x=x # define av_uninit(x) x=x
#else #else
# define av_uninit(x) x # define av_uninit(x) x
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment