From ba9719e3464855a46bb34e3db0c40e3e29b098d5 Mon Sep 17 00:00:00 2001 From: Pekka Riikonen Date: Sun, 26 May 2002 14:19:33 +0000 Subject: [PATCH] updates. --- apps/irssi/src/core/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/irssi/src/core/misc.c b/apps/irssi/src/core/misc.c index 93612d6b..e030a514 100644 --- a/apps/irssi/src/core/misc.c +++ b/apps/irssi/src/core/misc.c @@ -466,7 +466,7 @@ const char *get_home_dir(void) char *convert_home(const char *path) { return *path == '~' && (*(path+1) == '/' || *(path+1) == '\0') ? - g_strconcat((char *)get_home_dir, path+1, NULL) : + g_strconcat((char *)get_home_dir(), path+1, NULL) : g_strdup(path); } -- 2.24.0