summaryrefslogtreecommitdiff
path: root/libs/ardour/session_state.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/session_state.cc')
-rw-r--r--libs/ardour/session_state.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 9a994d3eca..62f7b4ae7c 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -663,7 +663,7 @@ Session::load_state (string snapshot_name)
xmlpath += snapshot_name;
xmlpath += pending_suffix;
- if (Glib::file_test (xmlpath, Glib::FILE_TEST_EXISTS)) {
+ if (sys::exists (xmlpath)) {
/* there is pending state from a crashed capture attempt */
@@ -679,7 +679,7 @@ Session::load_state (string snapshot_name)
xmlpath += statefile_suffix;
}
- if (!Glib::file_test (xmlpath, Glib::FILE_TEST_EXISTS)) {
+ if (!sys::exists (xmlpath)) {
error << string_compose(_("%1: session state information file \"%2\" doesn't exist!"), _name, xmlpath) << endmsg;
return 1;
}