summaryrefslogtreecommitdiff
path: root/libs/pbd/search_path.cc
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2014-04-11 13:03:48 +0100
committerJohn Emmas <johne53@tiscali.co.uk>2014-04-11 13:03:48 +0100
commitd95de393390f7f8ee4c13e491b4e4d2555db535a (patch)
tree67d0b63484c40e3ec38932d79e98d0d6ad1969e1 /libs/pbd/search_path.cc
parentc046b7c9d36d54600907565271a8ea2ceb004300 (diff)
Make sure we use the correct style of filepath separator on Windows
('libs/ardour/file_source.cc' still to be investigated)
Diffstat (limited to 'libs/pbd/search_path.cc')
-rw-r--r--libs/pbd/search_path.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/search_path.cc b/libs/pbd/search_path.cc
index fe2087f6b1..6c152e6015 100644
--- a/libs/pbd/search_path.cc
+++ b/libs/pbd/search_path.cc
@@ -133,7 +133,7 @@ export_search_path (const string& base_dir, const char* varname, const char* dir
if (cstr) {
path = cstr;
- path += ':';
+ path += G_DIR_SEPARATOR;
} else {
path = "";
}