From 1e030723596ba5973fa7868ed547cd694f198241 Mon Sep 17 00:00:00 2001 From: gpoirier Date: Fri, 16 Jan 2009 12:23:52 +0000 Subject: [PATCH] fix wrong #ifdef/#ifndef -> #if conversion in r28323 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28332 b3059339-0415-0410-9bf9-f77b7e298cf2 --- cpudetect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpudetect.c b/cpudetect.c index de9692349c..9756dfb454 100644 --- a/cpudetect.c +++ b/cpudetect.c @@ -511,7 +511,7 @@ void GetCpuCaps( CpuCaps *caps) caps->hasSSE4a=0; caps->isX86=0; caps->hasAltiVec = 0; -#if !HAVE_ALTIVEC +#if HAVE_ALTIVEC #ifdef __APPLE__ /* rip-off from ffmpeg altivec detection code.