From 40bb7a2eb3a6684306c6d9b6d6cfb6f1b2e5308c Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Fri, 14 Dec 2012 15:09:11 +0000 Subject: [PATCH] im_affine*() compat functions work too --- libvips/resample/affine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvips/resample/affine.c b/libvips/resample/affine.c index 9449b61d..39813ea3 100644 --- a/libvips/resample/affine.c +++ b/libvips/resample/affine.c @@ -619,7 +619,7 @@ vips_affine( VipsImage *in, VipsImage **out, matrix = (VipsArea *) vips_array_double_newv( 4, a, b, c, d ); va_start( ap, d ); - result = vips_call_split( "shrink", ap, in, out, matrix ); + result = vips_call_split( "affine", ap, in, out, matrix ); va_end( ap ); vips_area_unref( matrix );