summaryrefslogtreecommitdiff
path: root/pango
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2000-07-11 15:31:14 +0000
committerOwen Taylor <otaylor@src.gnome.org>2000-07-11 15:31:14 +0000
commite3f2407b5696c068793db083fc7054cf661836ce (patch)
tree73e715e0d68ea67db48038f19077b8cfd2b9f4a5 /pango
parent420062f86db398b4df038f42e01e3db5cd656a7d (diff)
downloadpango-e3f2407b5696c068793db083fc7054cf661836ce.tar.gz
Fix bug in home directory substitution.
Mon Jul 10 10:42:42 2000 Owen Taylor <otaylor@redhat.com> * pango/pango-utils.c (pango_split_file_list): Fix bug in home directory substitution.
Diffstat (limited to 'pango')
-rw-r--r--pango/pango-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pango-utils.c b/pango/pango-utils.c
index 13ac2c7c..786ae07c 100644
--- a/pango/pango-utils.c
+++ b/pango/pango-utils.c
@@ -96,7 +96,7 @@ pango_split_file_list (const char *str)
if (file[0] == '~' && file[1] == G_DIR_SEPARATOR)
{
- char *tmp = g_strconcat (g_get_home_dir(), files + 1, NULL);
+ char *tmp = g_strconcat (g_get_home_dir(), file + 1, NULL);
g_free (file);
file = tmp;
}