From f46bfa9599b5a4b9c90e27d004fc424b4a4a6e33 Mon Sep 17 00:00:00 2001 From: Davy Defaud Date: Sun, 27 Jan 2019 19:47:11 +0100 Subject: Replace single quotes by true apostrophes --- src/remmina_file_manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/remmina_file_manager.c') diff --git a/src/remmina_file_manager.c b/src/remmina_file_manager.c index e4e39f3d1..699394dd3 100644 --- a/src/remmina_file_manager.c +++ b/src/remmina_file_manager.c @@ -83,7 +83,7 @@ gchar *remmina_file_get_datadir(void) static gboolean remmina_file_manager_do_copy(const char *src_path, const char *dst_path) { GFile *src = g_file_new_for_path(src_path), *dst = g_file_new_for_path(dst_path); - /* We don't overwrite the target if it exists */ + /* We don’t overwrite the target if it exists */ const gboolean ok = g_file_copy(src, dst, G_FILE_COPY_NONE, NULL, NULL, NULL, NULL); g_object_unref(dst); -- cgit v1.2.3