Merge branch 'radioactiveman-main-patch-13472' into 'main'

texture: Fix typo in error message

See merge request GNOME/gtk!4311
This commit is contained in:
Matthias Clasen 2022-01-02 00:51:43 +00:00
commit 2441bdb900

View File

@ -454,7 +454,7 @@ gdk_texture_new_from_resource (const char *resource_path)
texture = NULL;
if (texture == NULL)
g_error ("Resource path %s s not a valid image: %s", resource_path, error->message);
g_error ("Resource path %s is not a valid image: %s", resource_path, error->message);
return texture;
}