From 4d58458a902630b663c5d22e2ba1745226f5cffc Mon Sep 17 00:00:00 2001 From: Nicolas Robidoux Date: Mon, 16 Mar 2009 09:23:03 +0000 Subject: [PATCH] clearer variable name --- libsrc/resample/nohalo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/resample/nohalo.cpp b/libsrc/resample/nohalo.cpp index edddfa68..e585bc66 100644 --- a/libsrc/resample/nohalo.cpp +++ b/libsrc/resample/nohalo.cpp @@ -243,8 +243,8 @@ * is also precomputed to keep it out of branching way. (Nicolas: I * think that this may be the first two branch minmod.) */ -#define FAST_MINMOD(a,b,ab,abmaa) \ - ( (ab)>=0. ? ( (abmaa)>=0. ? (a) : (b) ) : 0. ) +#define FAST_MINMOD(a,b,ab,abminusaa) \ + ( (ab)>=0. ? ( (abminusaa)>=0. ? (a) : (b) ) : 0. ) #define VIPS_TYPE_INTERPOLATE_NOHALO \ (vips_interpolate_nohalo_get_type())