Merge pull request #1265 from crashoz/master

Fixed vips_rect function
This commit is contained in:
John Cupitt 2019-03-22 15:02:53 +00:00 committed by GitHub
commit 8e55732bcd
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 );