Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a360e3d authored by Jin Qian's avatar Jin Qian Committed by android-build-merger
Browse files

Merge "fastboot: fix build break" am: cce381e3 am: 2cbce373

am: 72ce9fdd

Change-Id: I6cd7aac2390a7fbc27cd7528381ee2c154ce430a
parents 778447ad 72ce9fdd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ static int exec_e2fs_cmd(const char* path, const char** argv, const char** envp)
    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) {