about summary refs log tree commit diff stats
path: root/src/ui/console.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2020-07-02 10:32:00 +0200
committerMichael Vetter <jubalh@iodoru.org>2020-07-02 10:58:31 +0200
commit59f5b81b85e0af183489bc95414a57ba82005c0e (patch)
tree6a2abb196614734ce676ab2b6a5376f87b9cf2e6 /src/ui/console.c
parent1e2a288d80fe0200f1d44d5106f7cc5bfd77718b (diff)
downloadprofani-tty-59f5b81b85e0af183489bc95414a57ba82005c0e.tar.gz
cmd_url_*(): use gchar instead of char
Diffstat (limited to 'src/ui/console.c')
-rw-r--r--src/ui/console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index 759d6af3..f86dbfec 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -2070,7 +2070,7 @@ cons_executable_setting(void)
     cons_show("Default '/avatar open' command (/executable avatar)                      : %s", avatar);
     prefs_free_string(avatar);
 
-    char **urlopen = prefs_get_string_list_with_option(PREF_URL_OPEN_CMD, "");
+    gchar **urlopen = prefs_get_string_list_with_option(PREF_URL_OPEN_CMD, "");
     cons_show("Default '/url open' command (/executable urlopen)                        : %s", urlopen[1]);
     g_strfreev(urlopen);