This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avutil/attributes: Add () to protect the AV_GCC_VERSION_AT_LEAST() arguments
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer
10 years ago
parent
f8607cfb0a
commit
06309fc704
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavutil/attributes.h
+ 1
- 1
libavutil/attributes.h
View File
@@ -27,7 +27,7 @@
#define AVUTIL_ATTRIBUTES_H
#ifdef __GNUC__
# define AV_GCC_VERSION_AT_LEAST(x,y) (__GNUC__ > x || __GNUC__ == x && __GNUC_MINOR__ >= y)
# define AV_GCC_VERSION_AT_LEAST(x,y) (__GNUC__ >
(
x
)
|| __GNUC__ ==
(
x
)
&& __GNUC_MINOR__ >=
(
y)
)
#else
# define AV_GCC_VERSION_AT_LEAST(x,y) 0
#endif
Write
Preview
Loading…
Cancel
Save