fix vips_resize() C API

oops, see https://github.com/jcupitt/libvips/issues/223
This commit is contained in:
John Cupitt 2015-01-21 09:05:36 +00:00
parent 29d073c04c
commit 0eca68a088

View File

@ -296,7 +296,7 @@ vips_resize( VipsImage *in, VipsImage **out,
int result;
va_start( ap, scale );
result = vips_call_split( "affine", ap, in, out, scale );
result = vips_call_split( "resize", ap, in, out, scale );
va_end( ap );
return( result );