summaryrefslogtreecommitdiffstats
path: root/roots.cpp
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-02-04 00:40:06 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-02-04 00:40:06 +0100
commit95bcbfdd4e96cc89791e8fa907a508ace339c4c1 (patch)
tree9f4ecbd604bd914dbc0725b3babc7781f5ec8957 /roots.cpp
parentMerge "Avoid to call UI functions in child process" (diff)
parentReplace _exit(-1) with _exit(EXIT_FAILURE). (diff)
downloadandroid_bootable_recovery-95bcbfdd4e96cc89791e8fa907a508ace339c4c1.tar
android_bootable_recovery-95bcbfdd4e96cc89791e8fa907a508ace339c4c1.tar.gz
android_bootable_recovery-95bcbfdd4e96cc89791e8fa907a508ace339c4c1.tar.bz2
android_bootable_recovery-95bcbfdd4e96cc89791e8fa907a508ace339c4c1.tar.lz
android_bootable_recovery-95bcbfdd4e96cc89791e8fa907a508ace339c4c1.tar.xz
android_bootable_recovery-95bcbfdd4e96cc89791e8fa907a508ace339c4c1.tar.zst
android_bootable_recovery-95bcbfdd4e96cc89791e8fa907a508ace339c4c1.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) {