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:
authormyheroyuki <myheroyuki@outlook.com>2022-10-27 15:31:59 +0300
committermyheroyuki <myheroyuki@outlook.com>2022-10-27 17:16:55 +0300
commit16e6ef468c93087eef71c49bce7a99c313eb44f8 (patch)
tree2556a8cff2fe31403cf0c7270d566a64074cd259 /src/remmina_ssh_plugin.c
parentc192631c5f78564ab134e7b9fc1c678acc7c5041 (diff)
Casting const gchar* variable to gpointer to suppress warning.
Diffstat (limited to 'src/remmina_ssh_plugin.c')
-rw-r--r--src/remmina_ssh_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remmina_ssh_plugin.c b/src/remmina_ssh_plugin.c
index f78981371..c9b74f6ee 100644
--- a/src/remmina_ssh_plugin.c
+++ b/src/remmina_ssh_plugin.c
@@ -1263,7 +1263,7 @@ remmina_plugin_ssh_init(RemminaProtocolWidget *gp)
sshlogname = remmina_file_format_properties(remminafile, sshlogname);
fp = g_strconcat(dir, "/", sshlogname, NULL);
- g_free(sshlogname);
+ g_free((gpointer) sshlogname);
gpdata->vte_session_file = g_file_new_for_path(fp);
g_free(fp);