compat wrapper for bool was broken
oops it was calling relational instead
This commit is contained in:
parent
8b5b3288b4
commit
71d55c4554
1
TODO
1
TODO
@ -17,6 +17,7 @@
|
||||
|
||||
|
||||
|
||||
|
||||
- vips_image_new_from_file() etc. don't allow options in file names ... should
|
||||
they have varargs instead for options? or a version which goes view
|
||||
new_from_string and does allow options?
|
||||
|
@ -174,7 +174,6 @@ vips_boolean_buffer( VipsArithmetic *arithmetic,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Save a bit of typing.
|
||||
*/
|
||||
#define UC VIPS_FORMAT_UCHAR
|
||||
|
@ -1823,7 +1823,7 @@ vips__boolean( IMAGE *in1, IMAGE *in2, IMAGE *out,
|
||||
{
|
||||
VipsImage *t;
|
||||
|
||||
if( vips_relational( in1, in2, &t, boolean,
|
||||
if( vips_boolean( in1, in2, &t, boolean,
|
||||
NULL ) )
|
||||
return( -1 );
|
||||
if( vips_image_write( t, out ) ) {
|
||||
|
Loading…
Reference in New Issue
Block a user