From 9967ed245594c978c2f83b471bec5b1752e7afc9 Mon Sep 17 00:00:00 2001 From: Crashoz Date: Fri, 22 Mar 2019 15:43:10 +0100 Subject: [PATCH] Fixed vips_rect Fixed typo that broke function vips_rect --- libvips/arithmetic/complex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvips/arithmetic/complex.c b/libvips/arithmetic/complex.c index d598c3d7..7ca8bfe8 100644 --- a/libvips/arithmetic/complex.c +++ b/libvips/arithmetic/complex.c @@ -338,7 +338,7 @@ vips_rect( VipsImage *in, VipsImage **out, ... ) int result; va_start( ap, out ); - result = vips_complexv( in, out, VIPS_OPERATION_COMPLEX_POLAR, ap ); + result = vips_complexv( in, out, VIPS_OPERATION_COMPLEX_RECT, ap ); va_end( ap ); return( result );