From 8767ffde2facee1eb1a8d946cd970f0ee3eb8542 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Sat, 1 Jan 2022 17:23:22 +0000 Subject: [PATCH] texture: Fix typo in error message --- gdk/gdktexture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk/gdktexture.c b/gdk/gdktexture.c index 51663a7eec..2cf33fda5c 100644 --- a/gdk/gdktexture.c +++ b/gdk/gdktexture.c @@ -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; }