Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
fixup! [LibOS] test/regression: Fix exit_group test
Browse files Browse the repository at this point in the history
  • Loading branch information
pwmarcz committed Nov 20, 2020
1 parent 6eb656b commit a2f8340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LibOS/shim/test/regression/exit_group.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ int main(int argc, char** argv) {
}

pid_t pid = fork();
if (fork < 0) {
if (pid < 0) {
perror("fork");
exit(255);
} else if (pid > 0) {
Expand Down

0 comments on commit a2f8340

Please sign in to comment.