plug-ins: Fix JPEG2000 warning

Removes duplicate parenthesis in the CMYK color space check.
This commit is contained in:
sonia 2024-01-14 11:17:07 -05:00
parent c01ffee74f
commit 9f762f5e4b
2 changed files with 2 additions and 2 deletions

View File

@ -288,7 +288,7 @@ gimp_config_serialize_property (GimpConfig *config,
data = g_bytes_get_data (bytes, &data_length);
gimp_config_writer_printf (writer, "%llu", data_length);
gimp_config_writer_printf (writer, "%lu", data_length);
gimp_config_writer_data (writer, data_length, data);
}
else

View File

@ -1235,7 +1235,7 @@ load_image (GimpProcedure *procedure,
goto out;
}
}
else if ((image->color_space == OPJ_CLRSPC_CMYK))
else if (image->color_space == OPJ_CLRSPC_CMYK)
{
if (! color_cmyk_to_rgb (image))
{