summaryrefslogtreecommitdiff
path: root/gio
diff options
context:
space:
mode:
authorKean Johnston <kean.johnson@gmail.com>2011-10-15 17:57:23 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-10-15 17:58:39 -0400
commit33a86fce6a157ec7a69fe21a157b27748cb286eb (patch)
treef85aedb9a1fff689d8f032af87f25de5fa85367c /gio
parent94accc2d7891c8147ea5468828a346c716b06045 (diff)
GIOModule: Use G_SEARCHPATH_SEPARATOR_S instead of ":"
https://bugzilla.gnome.org/show_bug.cgi?id=661257
Diffstat (limited to 'gio')
-rw-r--r--gio/giomodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/giomodule.c b/gio/giomodule.c
index c7a002042..fa8aea265 100644
--- a/gio/giomodule.c
+++ b/gio/giomodule.c
@@ -880,7 +880,7 @@ _g_io_modules_ensure_loaded (void)
gchar **paths;
int i;
- paths = g_strsplit (module_path, ":", 0);
+ paths = g_strsplit (module_path, G_SEARCHPATH_SEPARATOR_S, 0);
for (i = 0; paths[i] != NULL; i++)
{