summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2010-12-29 23:18:26 +0100
committerColin Cross <ccross@android.com>2010-12-29 23:18:26 +0100
commit264f549b7d5aa5846e691dfe8aa9254fa4dbdc0b (patch)
tree92b959f63b0854d58d693e634e9a7d0d9ae969c5
parentam c5ebf1fb: am 5d6309e7: fix comparison of ECC stats before and after mtd reads (diff)
downloadandroid_bootable_recovery-264f549b7d5aa5846e691dfe8aa9254fa4dbdc0b.tar
android_bootable_recovery-264f549b7d5aa5846e691dfe8aa9254fa4dbdc0b.tar.gz
android_bootable_recovery-264f549b7d5aa5846e691dfe8aa9254fa4dbdc0b.tar.bz2
android_bootable_recovery-264f549b7d5aa5846e691dfe8aa9254fa4dbdc0b.tar.lz
android_bootable_recovery-264f549b7d5aa5846e691dfe8aa9254fa4dbdc0b.tar.xz
android_bootable_recovery-264f549b7d5aa5846e691dfe8aa9254fa4dbdc0b.tar.zst
android_bootable_recovery-264f549b7d5aa5846e691dfe8aa9254fa4dbdc0b.zip
-rw-r--r--updater/install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/install.c b/updater/install.c
index 685b97906..656c60790 100644
--- a/updater/install.c
+++ b/updater/install.c
@@ -237,7 +237,7 @@ Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) {
#ifdef USE_EXT4
} else if (strcmp(fs_type, "ext4") == 0) {
reset_ext4fs_info();
- int status = make_ext4fs(location, NULL, NULL, 0, 0, 0);
+ int status = make_ext4fs(location, NULL, NULL, 0, 0, 0, 0);
if (status != 0) {
fprintf(stderr, "%s: make_ext4fs failed (%d) on %s",
name, status, location);