From f4bba75f2f6a9609d28a1d2db44cec0230a45f15 Mon Sep 17 00:00:00 2001 From: Kean Johnston Date: Sat, 15 Oct 2011 17:57:23 -0400 Subject: [PATCH] GIOModule: Use G_SEARCHPATH_SEPARATOR_S instead of ":" https://bugzilla.gnome.org/show_bug.cgi?id=661257 --- gio/giomodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/giomodule.c b/gio/giomodule.c index 2763a98a8..45d56fc82 100644 --- a/gio/giomodule.c +++ b/gio/giomodule.c @@ -753,7 +753,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++) {