X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fsystem_exec.cc;h=aec89564223511a08834ca51b2e180850d16e010;hb=5694d877aaf4e69c90f76aa592e110289cbe81c6;hp=d83165252a913da4b08af75e47e788af0e37e226;hpb=c0e8647806a75db0bd1d1558a84522cd63d74d32;p=ardour.git diff --git a/libs/ardour/system_exec.cc b/libs/ardour/system_exec.cc index d83165252a..aec8956422 100644 --- a/libs/ardour/system_exec.cc +++ b/libs/ardour/system_exec.cc @@ -25,7 +25,7 @@ #include "ardour/filesystem_paths.h" #include "ardour/system_exec.h" -using namespace ARDOUR; +namespace ARDOUR { char * SystemExec::_vfork_exec_wrapper = NULL; @@ -41,8 +41,7 @@ static char *vfork_exec_wrapper_path() { ), "ardour-exec-wrapper", vfork_exec_wrapper)) { PBD::fatal << "vfork exec wrapper 'ardour-exec-wrapper' was not found in $PATH." << endmsg; - /* not reached */ - return NULL; + abort(); /*NOTREACHED*/ } return strdup(vfork_exec_wrapper.c_str()); #endif @@ -79,3 +78,5 @@ SystemExec::SystemExec (std::string c, const std::map subs) } SystemExec::~SystemExec() { } + +} // namespace ARDOUR