summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-09-16 02:40:14 +0200
committerDoug Zongker <dougz@android.com>2010-09-16 02:40:14 +0200
commita66c32ab1dde5ea8fc5d9fd9450ded267a94c429 (patch)
tree54b9729748467b6b9f3f4d67227e4cce085fecd4
parentresolved conflicts for merge of 76445f3a to master (diff)
parentam 56c5105b: support for ext4/EMMC filesystems in updater binary (diff)
downloadandroid_bootable_recovery-a66c32ab1dde5ea8fc5d9fd9450ded267a94c429.tar
android_bootable_recovery-a66c32ab1dde5ea8fc5d9fd9450ded267a94c429.tar.gz
android_bootable_recovery-a66c32ab1dde5ea8fc5d9fd9450ded267a94c429.tar.bz2
android_bootable_recovery-a66c32ab1dde5ea8fc5d9fd9450ded267a94c429.tar.lz
android_bootable_recovery-a66c32ab1dde5ea8fc5d9fd9450ded267a94c429.tar.xz
android_bootable_recovery-a66c32ab1dde5ea8fc5d9fd9450ded267a94c429.tar.zst
android_bootable_recovery-a66c32ab1dde5ea8fc5d9fd9450ded267a94c429.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..6a8c5d401 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);
if (status != 0) {
fprintf(stderr, "%s: make_ext4fs failed (%d) on %s",
name, status, location);