Browse Source

Silence one icc warning:

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

Originally committed as revision 17127 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Carl Eugen Hoyos 17 years ago
parent
commit
0dd8966638
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/common.h

+ 1
- 1
libavutil/common.h View File

@@ -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


Loading…
Cancel
Save