Fixed vips_rect

Fixed typo that broke function vips_rect
This commit is contained in:
Crashoz 2019-03-22 15:43:10 +01:00 committed by GitHub
parent 57ce5a3343
commit 9967ed2455
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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