arm64: respond to code review

This commit is contained in:
Shawn Landden
2018-10-05 11:32:31 -07:00
parent 17cb69cebc
commit 2d27341724
6 changed files with 106 additions and 51 deletions

View File

@@ -839,7 +839,7 @@ static int os_exec_process_posix(const char *exe, ZigList<const char *> &args,
if ((err = pipe(stderr_pipe)))
zig_panic("pipe failed");
pid_t pid = vfork();
pid_t pid = fork();
if (pid == -1)
zig_panic("fork failed: %s", strerror(errno));
if (pid == 0) {