oops dropped one

This commit is contained in:
John Cupitt 2011-10-11 17:49:02 +01:00
parent 66126c1076
commit de77449b6e
1 changed files with 6 additions and 2 deletions

View File

@ -991,13 +991,17 @@ int
im_copy_set( IMAGE *in, IMAGE *out,
VipsType type, float xres, float yres, int xoffset, int yoffset )
{
return( vips_copy( in, out,
VipsImage *x;
if( vips_copy( in, out,
"interpretation", type,
"xres", xres,
"yres", yres,
"xoffset", xoffset,
"yoffset", yoffset,
NULL ) );
NULL ) )
return( -1 );
}
int