Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
Commit migrated from mono/mono@37c197f
  • Loading branch information
alexischr authored and lewing committed Oct 8, 2019
1 parent 32e4c17 commit 254307f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/mono/mono/utils/mono-merp.c
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,6 @@ mono_merp_send (MERPStruct *merp)
} else {
int status;
waitpid (pid, &status, 0);
gboolean exit_success = FALSE;
int exit_status = FALSE;

while (TRUE) {
Expand All @@ -347,7 +346,6 @@ mono_merp_send (MERPStruct *merp)

if (WIFEXITED(status)) {
exit_status = WEXITSTATUS(status);
exit_success = TRUE;
invoke_success = (exit_status == 0);
break;
} else if (WIFSIGNALED(status)) {
Expand Down

0 comments on commit 254307f

Please sign in to comment.