summaryrefslogtreecommitdiff
path: root/pango/modules.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-09-12 16:38:18 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-09-12 16:38:18 +0000
commit276be1c7bbf92d8540249cd546c362395a551758 (patch)
tree572a0655c3cea323ff29f1c82fb816def21450ee /pango/modules.c
parente0dfb07ec8e8ae251d7a0f52ed3d1301f7c8abf1 (diff)
downloadpango-276be1c7bbf92d8540249cd546c362395a551758.tar.gz
Use g_build_filename() where appropriate.
Tue Sep 11 11:31:53 2001 Owen Taylor <otaylor@redhat.com> * pango/pangoft2-fontmap.c pango/modules.c pango/pango-utils.c pango/querymodules.c: Use g_build_filename() where appropriate.
Diffstat (limited to 'pango/modules.c')
-rw-r--r--pango/modules.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pango/modules.c b/pango/modules.c
index b4f15bec..a1017e8a 100644
--- a/pango/modules.c
+++ b/pango/modules.c
@@ -332,9 +332,9 @@ read_modules (void)
int n;
if (!file_str)
- file_str = g_strconcat (pango_get_sysconf_subdirectory (),
- G_DIR_SEPARATOR_S "pango.modules",
- NULL);
+ file_str = g_build_filename (pango_get_sysconf_subdirectory (),
+ "pango.modules",
+ NULL);
files = pango_split_file_list (file_str);