From d326dd97976a11e44db9b0ec18ad0050c147b04f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Tue, 3 Jun 2008 22:10:53 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20embarassing=20=5F=5FGNU=5F=5F=20vs.=20=5F?= =?UTF-8?q?=5FGNUC=5F=5F=20typo=20in=20preprocessor=20condition.=20patch?= =?UTF-8?q?=20by=20Rafa=C3=ABl=20Carr=C3=A9,=20funman=20videolan=20org?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 13652 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/mem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavutil/mem.h b/libavutil/mem.h index e51976f0f7..5a405bf01b 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -42,13 +42,13 @@ #define DECLARE_ASM_CONST(n,t,v) static const t v #endif -#if defined(__GNUC__) && (__GNU__ > 3 || __GNU__ == 3 && __GNU_MINOR__ > 0) +#if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0) #define av_malloc_attrib __attribute__((__malloc__)) #else #define av_malloc_attrib #endif -#if defined(__GNUC__) && (__GNU__ > 4 || __GNU__ == 4 && __GNU_MINOR__ > 1) +#if defined(__GNUC__) && (__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ > 1) #define av_alloc_size(n) __attribute__((alloc_size(n))) #else #define av_alloc_size(n)