summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/system_exec.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/system_exec.cc b/libs/ardour/system_exec.cc
index 456f8351f2..75b20e4500 100644
--- a/libs/ardour/system_exec.cc
+++ b/libs/ardour/system_exec.cc
@@ -37,7 +37,8 @@ static char *vfork_exec_wrapper_path() {
if (!PBD::find_file (
PBD::Searchpath(Glib::build_filename(ARDOUR::ardour_dll_directory(), "vfork")),
"ardour-exec-wrapper", vfork_exec_wrapper)) {
- PBD::warning << "vfork exec wrapper not found..'" << endmsg;
+ PBD::fatal << "vfork exec wrapper 'ardour-exec-wrapper' was not found in $PATH." << endmsg;
+ /* not reached */
return NULL;
}
return strdup(vfork_exec_wrapper.c_str());