oops typo

thanks Lovell
This commit is contained in:
John Cupitt 2016-02-22 14:08:36 +00:00
parent 01238a0fd5
commit 840c3f2e63
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ extern "C" {
#define VIPS_FLOOR( V ) floor( V )
#define VIPS_CEIL( V ) ceil( V )
#define VIPS_RINT( R ) ((int) ((R) > 0 ? ((R) + 0.5) : ((R) - 0.5)))
#define VIPS_FABS( V ) VIPS_FABS( V )
#define VIPS_FABS( V ) VIPS_ABS( V )
#define VIPS_FMAX( A, B ) VIPS_MAX( A, B )
#define VIPS_FMIN( A, B ) VIPS_MIN( A, B )
#endif