summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Rubin <20150305+Rubo3@users.noreply.github.com>2022-12-18 15:03:26 +0100
committerGitHub <noreply@github.com>2022-12-18 15:03:26 +0100
commit56b0f979ebb3b1164a0e5d11fae186570c73e015 (patch)
tree343d23b5e2878e0cbc4657758e8d62e369c25ebe
parentEnable compiler optimizations and enforce x86-64-v2 on GCC/Clang (#9442) (diff)
downloadyuzu-56b0f979ebb3b1164a0e5d11fae186570c73e015.tar
yuzu-56b0f979ebb3b1164a0e5d11fae186570c73e015.tar.gz
yuzu-56b0f979ebb3b1164a0e5d11fae186570c73e015.tar.bz2
yuzu-56b0f979ebb3b1164a0e5d11fae186570c73e015.tar.lz
yuzu-56b0f979ebb3b1164a0e5d11fae186570c73e015.tar.xz
yuzu-56b0f979ebb3b1164a0e5d11fae186570c73e015.tar.zst
yuzu-56b0f979ebb3b1164a0e5d11fae186570c73e015.zip
-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) {
return pid;
} else if (pid == 0) {
// child
- execl(arg0, arg0, nullptr);
+ execlp(arg0, arg0, nullptr);
const int err = errno;
fmt::print(stderr, "execl failed with error {}\n", err);
_exit(0);