updates.
[crypto.git] / apps / irssi / src / core / misc.c
index 93612d6bb5ab7704f786fa2dc51fd21e5ee4fbf7..e030a5147b9e744b42f84a4f6109d7c3b6a9b208 100644 (file)
@@ -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);
 }