# HG changeset patch # User diego # Date 1168660895 0 # Node ID 4154bbb6cbd162b43741c9a546f3174f2b80f3c1 # Parent 3c1966537d5ee1bdebe25f0d710b7a5864022c1b Avoid "HAVE_CMOV not defined" warning. patch by Christophe Mutricy, xtophe nxtelevision com diff -r 3c1966537d5e -r 4154bbb6cbd1 common.h --- 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"