clearer variable name

This commit is contained in:
Nicolas Robidoux 2009-03-16 09:23:03 +00:00
parent 25dec5f09f
commit 4d58458a90
1 changed files with 2 additions and 2 deletions

View File

@ -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())