mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
Oops. (fix inverted conditional from last commit)
This commit is contained in:
@@ -100,7 +100,7 @@ bool pid_running(pid_t pid) {
|
|||||||
// NOTE: We can get a `EACCES` here if we don't have permissions to read
|
// NOTE: We can get a `EACCES` here if we don't have permissions to read
|
||||||
// this process's memory. This does mean that the process is still
|
// this process's memory. This does mean that the process is still
|
||||||
// running.
|
// running.
|
||||||
return err.failed() || err.value() == EACCES;
|
return !err.failed() || err.value() == EACCES;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string url_encode_path(std::string path) {
|
std::string url_encode_path(std::string path) {
|
||||||
|
|||||||
Reference in New Issue
Block a user