diff options
Diffstat (limited to 'init/builtins.cpp')
-rw-r--r-- | init/builtins.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init/builtins.cpp b/init/builtins.cpp index 470437cf0..e66350163 100644 --- a/init/builtins.cpp +++ b/init/builtins.cpp @@ -150,13 +150,13 @@ static void unmount_and_fsck(const struct mntent *entry) "/system/bin/fsck.f2fs", "-f", entry->mnt_fsname, }; android_fork_execvp_ext(ARRAY_SIZE(f2fs_argv), (char **)f2fs_argv, - &st, true, LOG_KLOG, true, NULL); + &st, true, LOG_KLOG, true, NULL, NULL, 0); } else if (!strcmp(entry->mnt_type, "ext4")) { const char *ext4_argv[] = { "/system/bin/e2fsck", "-f", "-y", entry->mnt_fsname, }; android_fork_execvp_ext(ARRAY_SIZE(ext4_argv), (char **)ext4_argv, - &st, true, LOG_KLOG, true, NULL); + &st, true, LOG_KLOG, true, NULL, NULL, 0); } } |