changeset 162:4154bbb6cbd1 libavutil

Avoid "HAVE_CMOV not defined" warning. patch by Christophe Mutricy, xtophe nxtelevision com
author diego
date Sat, 13 Jan 2007 04:01:35 +0000
parents 3c1966537d5e
children dfd02ce85c5d
files common.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/common.h	Tue Jan 09 11:58:06 2007 +0000
+++ b/common.h	Sat Jan 13 04:01:35 2007 +0000
@@ -120,7 +120,7 @@
 /* median of 3 */
 static inline int mid_pred(int a, int b, int c)
 {
-#if HAVE_CMOV
+#ifdef HAVE_CMOV
     int i=b;
     asm volatile(
         "cmp    %2, %1 \n\t"