remove extraneous parentheses

This commit is contained in:
lillolollo 2024-03-20 09:27:27 +00:00 committed by Alx Sa
parent d207fcde4a
commit c72f91d69a
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ load_image (GFile *file,
(gint) (len - sizeof (JPEG_APP_HEADER_EXIF)));
#endif
}
else if ((marker->marker == JPEG_APP0 + 13))
else if (marker->marker == JPEG_APP0 + 13)
{
photoshop_data = g_new (guchar, len);
photoshop_len = len;