remove error msg from start fail

just a debugging thing now
This commit is contained in:
John Cupitt 2016-07-29 15:13:59 +01:00
parent d78f87702d
commit 7c55def6d7
1 changed files with 5 additions and 2 deletions

View File

@ -231,9 +231,12 @@ vips__region_start( VipsRegion *region )
g_mutex_unlock( image->sslock );
if( !region->seq ) {
vips_error( "vips__region_start",
_( "start function failed for image %s" ),
#ifdef DEBUG
printf( "vips__region_start: "
"start function failed for image %s",
image->filename );
#endif /*DEBUG*/
return( -1 );
}
}