summaryrefslogtreecommitdiffstats
path: root/roots.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-02-04 00:51:27 +0100
committerandroid-build-merger <android-build-merger@google.com>2017-02-04 00:51:27 +0100
commit5101b78f031ee546f9455180107499f57991b846 (patch)
tree25cded2ed2293f54b91ad7c8f6c45eebb16e55ed /roots.cpp
parentMerge "Avoid to call UI functions in child process" am: 0f275ae56e am: 5fa2e576f9 (diff)
parentMerge "Replace _exit(-1) with _exit(EXIT_FAILURE)." am: 95bcbfdd4e (diff)
downloadandroid_bootable_recovery-5101b78f031ee546f9455180107499f57991b846.tar
android_bootable_recovery-5101b78f031ee546f9455180107499f57991b846.tar.gz
android_bootable_recovery-5101b78f031ee546f9455180107499f57991b846.tar.bz2
android_bootable_recovery-5101b78f031ee546f9455180107499f57991b846.tar.lz
android_bootable_recovery-5101b78f031ee546f9455180107499f57991b846.tar.xz
android_bootable_recovery-5101b78f031ee546f9455180107499f57991b846.tar.zst
android_bootable_recovery-5101b78f031ee546f9455180107499f57991b846.zip
Diffstat (limited to 'roots.cpp')
-rw-r--r--roots.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/roots.cpp b/roots.cpp
index 376fcbd1b..4a0a4948a 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -163,7 +163,7 @@ static int exec_cmd(const char* path, char* const argv[]) {
pid_t child;
if ((child = vfork()) == 0) {
execv(path, argv);
- _exit(-1);
+ _exit(EXIT_FAILURE);
}
waitpid(child, &status, 0);
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {