From f23e65f7171652c2e2390e1c682eae3e66d08b23 Mon Sep 17 00:00:00 2001 From: Dirk Farin Date: Thu, 12 Oct 2023 10:53:50 +0200 Subject: [PATCH] gdkpixbuf: remove warning when there is no ICC profile (#974) --- gdk-pixbuf/pixbufloader-heif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk-pixbuf/pixbufloader-heif.c b/gdk-pixbuf/pixbufloader-heif.c index 658a551b19..9666e798d1 100644 --- a/gdk-pixbuf/pixbufloader-heif.c +++ b/gdk-pixbuf/pixbufloader-heif.c @@ -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. } g_free(profile_data);