summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2022-07-06 13:33:46 +0100
committerPhilip Withnall <pwithnall@endlessos.org>2022-07-06 13:33:46 +0100
commit06be6ac8fc6b987fa2fa22cbf4189f1605d90746 (patch)
treeb746914d04bf38052c290d34e322ad1ac467a382 /gmodule
parent9b02e58e88f3c5eaff9723cf351075d558957319 (diff)
downloadglib-06be6ac8fc6b987fa2fa22cbf4189f1605d90746.tar.gz
gmodule: Use Unicode quotation marks in error messages
This makes them a little nicer to read. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/gmodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c
index 9f5c53f21..eadb05153 100644
--- a/gmodule/gmodule.c
+++ b/gmodule/gmodule.c
@@ -364,7 +364,7 @@ parse_libtool_archive (const gchar* libtool_name)
if (fd < 0)
{
gchar *display_libtool_name = g_filename_display_name (libtool_name);
- g_module_set_error_unduped (g_strdup_printf ("failed to open libtool archive \"%s\"", display_libtool_name));
+ g_module_set_error_unduped (g_strdup_printf ("failed to open libtool archive ‘%s’", display_libtool_name));
g_free (display_libtool_name);
return NULL;
}
@@ -390,7 +390,7 @@ parse_libtool_archive (const gchar* libtool_name)
G_TOKEN_IDENTIFIER : G_TOKEN_STRING))
{
gchar *display_libtool_name = g_filename_display_name (libtool_name);
- g_module_set_error_unduped (g_strdup_printf ("unable to parse libtool archive \"%s\"", display_libtool_name));
+ g_module_set_error_unduped (g_strdup_printf ("unable to parse libtool archive ‘%s’", display_libtool_name));
g_free (display_libtool_name);
g_free (lt_dlname);
@@ -433,7 +433,7 @@ parse_libtool_archive (const gchar* libtool_name)
if (lt_libdir == NULL || lt_dlname == NULL)
{
gchar *display_libtool_name = g_filename_display_name (libtool_name);
- g_module_set_error_unduped (g_strdup_printf ("unable to parse libtool archive \"%s\"", display_libtool_name));
+ g_module_set_error_unduped (g_strdup_printf ("unable to parse libtool archive ‘%s’", display_libtool_name));
g_free (display_libtool_name);
return NULL;