summaryrefslogtreecommitdiff
path: root/libs/ardour/session_state.cc
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2014-04-11 15:36:04 +0100
committerJohn Emmas <johne53@tiscali.co.uk>2014-04-11 15:36:04 +0100
commit5d9c2104d200aebc33a302c0018fd891e10351e6 (patch)
tree679d8f1abdf1024df68fb729f88a9d4978ed167d /libs/ardour/session_state.cc
parentd95de393390f7f8ee4c13e491b4e4d2555db535a (diff)
Oops - correct some typos in my previous commit
(accidentally used G_DIR_SEPARATOR instead of G_SEARCHPATH_SEPARATOR)
Diffstat (limited to 'libs/ardour/session_state.cc')
-rw-r--r--libs/ardour/session_state.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index dd963591e8..cffdae9d15 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -916,7 +916,7 @@ Session::state (bool full_state)
p += (*i).path;
if (next != session_dirs.end()) {
- p += G_DIR_SEPARATOR;
+ p += G_SEARCHPATH_SEPARATOR;
} else {
break;
}
@@ -2680,7 +2680,7 @@ Session::cleanup_sources (CleanupReport& rep)
audio_path += sdir.sound_path();
if (nexti != session_dirs.end()) {
- audio_path += G_DIR_SEPARATOR;
+ audio_path += G_SEARCHPATH_SEPARATOR;
}
i = nexti;
@@ -2698,7 +2698,7 @@ Session::cleanup_sources (CleanupReport& rep)
midi_path += sdir.midi_path();
if (nexti != session_dirs.end()) {
- midi_path += G_DIR_SEPARATOR;
+ midi_path += G_SEARCHPATH_SEPARATOR;
}
i = nexti;