COMMON: Fix a tiny macro typo!

This commit is contained in:
Piotr Esden-Tempski 2013-02-26 16:00:04 -08:00
parent 5e7ec39440
commit e56f4194a6
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ typedef uint64_t u64;
/* Full-featured deprecation attribute with fallback for older compilers. */
#ifdef __GNUC__
# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR_ > 4)
# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 4)
# define LIBOPENCM3_DEPRECATED(x) __attribute__ ((deprecated (x)))
# else
# define LIBOPENCM3_DEPRECATED(x) __attribute__ ((deprecated))