mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-18 20:10:22 +01:00
19 lines
647 B
Diff
19 lines
647 B
Diff
From: Ricardo Mones <mones@debian.org>
|
|
Subject: fix typo in import.c file
|
|
Last-Updated: 2022-09-14
|
|
Forwarded: no
|
|
|
|
diff --git a/src/import.c b/src/import.c
|
|
index a59f11f..b323270 100644
|
|
--- a/src/import.c
|
|
+++ b/src/import.c
|
|
@@ -734,7 +734,7 @@ static void import_filesel_cb(GtkWidget *widget, gpointer data)
|
|
|
|
utf8_filename = g_filename_to_utf8(filename, -1, NULL, NULL, NULL);
|
|
if (!utf8_filename) {
|
|
- g_warning("import_filesel_cb(): failed to convert characer set.");
|
|
+ g_warning("import_filesel_cb(): failed to convert character set.");
|
|
utf8_filename = g_strdup(filename);
|
|
}
|
|
gtk_entry_set_text(GTK_ENTRY(file_entry), utf8_filename);
|