summaryrefslogtreecommitdiff
path: root/libs/ardour/filesystem_paths.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-08-19 04:07:39 +0200
committerRobin Gareus <robin@gareus.org>2015-08-19 04:07:39 +0200
commitcf1ab3391f374e45557bb6bf57036bf3ec6d2d90 (patch)
treecd9df5d4bbbf71cedb1327278721eae4d40916c3 /libs/ardour/filesystem_paths.cc
parenta2fbce0e7f31bdebf59bcea5282b4909c9e19837 (diff)
code consistency and hints for static analysis
Diffstat (limited to 'libs/ardour/filesystem_paths.cc')
-rw-r--r--libs/ardour/filesystem_paths.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/filesystem_paths.cc b/libs/ardour/filesystem_paths.cc
index 7e9b4e1857..2c378c0d7f 100644
--- a/libs/ardour/filesystem_paths.cc
+++ b/libs/ardour/filesystem_paths.cc
@@ -124,7 +124,7 @@ user_config_directory (int version)
} else if (!Glib::file_test (p, Glib::FILE_TEST_IS_DIR)) {
error << string_compose (_("Configuration directory %1 already exists and is not a directory/folder - cannot run"),
p) << endmsg;
- exit (1);
+ abort(); /*NOTREACHED*/
}
}
@@ -190,7 +190,7 @@ user_cache_directory ()
} else if (!Glib::file_test (p, Glib::FILE_TEST_IS_DIR)) {
fatal << string_compose (_("Cache directory %1 already exists and is not a directory/folder - cannot run"),
p) << endmsg;
- exit (1);
+ abort(); /*NOTREACHED*/
}
return p;
@@ -231,7 +231,7 @@ windows_package_directory_path ()
if (package_dir == NULL) {
fatal << string_compose (_("Cannot determine %1 package directory"),
PROGRAM_NAME) << endmsg;
- // not reached
+ abort(); /*NOTREACHED*/
}
std::string package_dir_path(package_dir);