summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Swetland <swetland@google.com>2010-09-16 03:07:22 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-16 03:07:22 +0200
commit1dcd2fd0c7cc44cae279a5088241bdf15f084cb8 (patch)
treee15356e5663ffb35985692b5f2c182e5647e91cc
parentam 8a8e6cc3: (cherry-pick) EMMC support in applypatch (diff)
parentdo not merge - update to match ext4utils api (diff)
downloadandroid_bootable_recovery-1dcd2fd0c7cc44cae279a5088241bdf15f084cb8.tar
android_bootable_recovery-1dcd2fd0c7cc44cae279a5088241bdf15f084cb8.tar.gz
android_bootable_recovery-1dcd2fd0c7cc44cae279a5088241bdf15f084cb8.tar.bz2
android_bootable_recovery-1dcd2fd0c7cc44cae279a5088241bdf15f084cb8.tar.lz
android_bootable_recovery-1dcd2fd0c7cc44cae279a5088241bdf15f084cb8.tar.xz
android_bootable_recovery-1dcd2fd0c7cc44cae279a5088241bdf15f084cb8.tar.zst
android_bootable_recovery-1dcd2fd0c7cc44cae279a5088241bdf15f084cb8.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 167b40204..a596dc654 100644
--- a/updater/install.c
+++ b/updater/install.c
@@ -234,7 +234,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);
+ int status = make_ext4fs(location, NULL, NULL, 0, 0, 0);
if (status != 0) {
fprintf(stderr, "%s: make_ext4fs failed (%d) on %s",
name, status, location);