Patch from Shaun Jackman to save a few bytes.
This commit is contained in:
parent
0b1ff5a606
commit
47bc802e9e
@ -100,11 +100,10 @@ extern int watch_main(int argc, char **argv)
|
|||||||
//child
|
//child
|
||||||
close(1);
|
close(1);
|
||||||
dup(old_stdout);
|
dup(old_stdout);
|
||||||
if (execvp(*watched_argv, watched_argv)) {
|
execvp(*watched_argv, watched_argv);
|
||||||
bb_error_msg_and_die("Couldn't run command\n");
|
bb_perror_msg_and_die(*watched_argv);
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
bb_error_msg_and_die("Couldn't vfork\n");
|
bb_perror_msg_and_die("vfork");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user