Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavy Defaud <davy.defaud@free.fr>2019-01-27 21:47:11 +0300
committerDavy Defaud <davy.defaud@free.fr>2019-01-27 21:47:11 +0300
commitf46bfa9599b5a4b9c90e27d004fc424b4a4a6e33 (patch)
tree9b6313ec753bed10d50fe1c676dd844b47dedac9 /src/remmina_file_manager.c
parentb266c8e1707520b157cac395a551af63eeb23146 (diff)
Replace single quotes by true apostrophes
Diffstat (limited to 'src/remmina_file_manager.c')
-rw-r--r--src/remmina_file_manager.c2
1 files changed, 1 insertions, 1 deletions
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);