Merge branch 'yurchor-master-patch-77064' into 'master'

Fix minor typo: Unsupportd -> Unsupported

See merge request GNOME/gtk!4127
This commit is contained in:
Matthias Clasen 2021-11-05 19:41:05 +00:00
commit 935f7f19f3

View File

@ -251,7 +251,7 @@ gdk_load_png (GBytes *bytes,
png_destroy_read_struct (&png, &info, NULL); png_destroy_read_struct (&png, &info, NULL);
g_set_error (error, g_set_error (error,
GDK_TEXTURE_ERROR, GDK_TEXTURE_ERROR_UNSUPPORTED_CONTENT, GDK_TEXTURE_ERROR, GDK_TEXTURE_ERROR_UNSUPPORTED_CONTENT,
_("Unsupportd color type %u in png image"), color_type); _("Unsupported color type %u in png image"), color_type);
return NULL; return NULL;
} }