From 657dceb3ed646b11760e0c8683da952f0ca4b0d6 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Tue, 31 Mar 2026 15:20:36 -0300 Subject: [PATCH] app: Use g_strerror --- app/text/gimpfontfactory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/text/gimpfontfactory.c b/app/text/gimpfontfactory.c index d6cf038117..cedc341509 100644 --- a/app/text/gimpfontfactory.c +++ b/app/text/gimpfontfactory.c @@ -867,7 +867,7 @@ gimp_font_factory_load_names (GimpFontFactory *factory) fd = g_open ((gchar *) file, O_RDONLY, 0); if (fd == -1) { - g_string_append_printf (ignored_fonts, "- %s (access error: %s)\n", file, strerror (errno)); + g_string_append_printf (ignored_fonts, "- %s (access error: %s)\n", file, g_strerror (errno)); n_ignored++; continue; }