commit | cce381e307dd3b2a3b54463afae53b6a8a30cefc | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Wed Dec 06 07:27:29 2017 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Dec 06 07:27:29 2017 +0000 |
tree | dcc4d0f527bb26abcdeb45e81c51feaeda4f9b8a | |
parent | cc06663c0419ff15df786e21fda6cfbbfd6d90d8 [diff] | |
parent | 0c04f782865e493945aee466c4fff4e73c36a659 [diff] |
Merge "fastboot: fix build break"
diff --git a/fastboot/fs.cpp b/fastboot/fs.cpp index fe5cbc3..9949eae 100644 --- a/fastboot/fs.cpp +++ b/fastboot/fs.cpp
@@ -83,7 +83,7 @@ int status; pid_t child; if ((child = fork()) == 0) { - execvpe(path, const_cast<char**>(argv), const_cast<char**>(envp)); + execve(path, const_cast<char**>(argv), const_cast<char**>(envp)); _exit(EXIT_FAILURE); } if (child < 0) {