summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar liamwhite2022-12-18 11:46:43 -0500
committerGravatar GitHub2022-12-18 11:46:43 -0500
commit2724ffd6e3298ed8d1062553d88484d6245e1793 (patch)
treec61e61c36ee8413317fc58108626b80c00e79d96 /src
parentMerge pull request #9467 from german77/folder (diff)
parentUse execlp instead of execl to avoid failure (diff)
downloadyuzu-2724ffd6e3298ed8d1062553d88484d6245e1793.tar.gz
yuzu-2724ffd6e3298ed8d1062553d88484d6245e1793.tar.xz
yuzu-2724ffd6e3298ed8d1062553d88484d6245e1793.zip
Merge pull request #9469 from Rubo3/patch-1
Use execlp instead of execl to avoid failure
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/startup_checks.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/startup_checks.cpp b/src/yuzu/startup_checks.cpp
index 563818362..9f702fe95 100644
--- a/src/yuzu/startup_checks.cpp
+++ b/src/yuzu/startup_checks.cpp
@@ -186,7 +186,7 @@ pid_t SpawnChild(const char* arg0) {
186 return pid; 186 return pid;
187 } else if (pid == 0) { 187 } else if (pid == 0) {
188 // child 188 // child
189 execl(arg0, arg0, nullptr); 189 execlp(arg0, arg0, nullptr);
190 const int err = errno; 190 const int err = errno;
191 fmt::print(stderr, "execl failed with error {}\n", err); 191 fmt::print(stderr, "execl failed with error {}\n", err);
192 _exit(0); 192 _exit(0);