plug-ins: fix comment typo in file-png

This commit is contained in:
Michael Natterer 2019-06-26 17:26:06 +02:00
parent b07975aa88
commit 06e0ca8ef0
1 changed files with 3 additions and 3 deletions

View File

@ -1533,8 +1533,9 @@ save_image (const gchar *filename,
else
{
/* When converting higher bit depth work image into 8-bit,
* with no manually assigned profile, make sure the result if
* sRGB. */
* with no manually assigned profile, make sure the result is
* sRGB.
*/
profile = gimp_image_get_effective_color_profile (orig_image_ID);
if (gimp_color_profile_is_linear (profile))
@ -1545,7 +1546,6 @@ save_image (const gchar *filename,
g_object_unref (profile);
profile = saved_profile;
}
}
}
#endif