Skip to content

Commit

Permalink
gdkpixbuf: remove warning when there is no ICC profile (#974)
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Oct 12, 2023
1 parent ab5e557 commit f23e65f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdk-pixbuf/pixbufloader-heif.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ static gboolean stop_load(gpointer context, GError** error)
g_free(profile_base64);
}
else {
g_warning("%s", err.message);
// Having no ICC profile is perfectly fine. Do not show any warning because of that.

This comment has been minimized.

Copy link
@kmilos

kmilos Oct 12, 2023

Contributor

Is there some other logging mechanism one can use here instead? This is still potentially useful info...

}

g_free(profile_data);
Expand Down

0 comments on commit f23e65f

Please sign in to comment.