try to improve the error message

This commit is contained in:
John Cupitt 2021-04-24 18:23:27 +01:00
parent a046f26095
commit 4abcbc7a2e

View File

@ -611,6 +611,8 @@ vips_image_expected_sig( VipsImage *image )
/* Load a profile from a blob and check compatibility with image, intent and
* direction.
*
* Don't set any errors since this is used to test compatibility.
*/
static cmsHPROFILE
vips_icc_load_profile_blob( VipsBlob *blob,
@ -742,7 +744,8 @@ vips_icc_set_import( VipsIcc *icc,
}
if( !icc->in_profile ) {
vips_error( class->nickname, "%s", _( "no input profile" ) );
vips_error( class->nickname, "%s", _( "unable to load or "
"find any compatible input profile" ) );
return( -1 );
}