remove some dbg code

accidentally left in, thanks Kleis
This commit is contained in:
John Cupitt 2020-01-10 05:03:48 +00:00
parent 51fc2ff64e
commit 3862b636e4

View File

@ -103,10 +103,8 @@ vips_source_test_features( VipsSource *source )
/* We'll need a descriptor to test. /* We'll need a descriptor to test.
*/ */
if( vips_source_unminimise( source ) ) { if( vips_source_unminimise( source ) )
printf( "HUGE BANANA!!!\n" );
return( -1 ); return( -1 );
}
/* Can we seek this input? /* Can we seek this input?
* *
@ -122,10 +120,8 @@ vips_source_test_features( VipsSource *source )
/* We should be able to get the length of seekable /* We should be able to get the length of seekable
* objects. * objects.
*/ */
if( (length = vips_source_length( source )) == -1 ) { if( (length = vips_source_length( source )) == -1 )
printf( "BANANA!!!\n" );
return( -1 ); return( -1 );
}
source->length = length; source->length = length;