early-access version 3230

main
pineappleEA 2022-12-18 19:12:07 +01:00
parent 8bb254664f
commit 2f9cd2bb91
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 3229. This is the source code for early-access 3230.
## Legal Notice ## Legal Notice

View File

@ -186,7 +186,7 @@ pid_t SpawnChild(const char* arg0) {
return pid; return pid;
} else if (pid == 0) { } else if (pid == 0) {
// child // child
execl(arg0, arg0, nullptr); execlp(arg0, arg0, nullptr);
const int err = errno; const int err = errno;
fmt::print(stderr, "execl failed with error {}\n", err); fmt::print(stderr, "execl failed with error {}\n", err);
_exit(0); _exit(0);