diff options
author | Ken Sumrall <ksumrall@android.com> | 2010-08-14 01:08:03 +0200 |
---|---|---|
committer | Ken Sumrall <ksumrall@android.com> | 2010-08-14 04:22:47 +0200 |
commit | 8101125ee5068aff91f98c042660cb29576b8612 (patch) | |
tree | dc311ab0a7fb8fe2a3cd289935b8470dd5aa4dbc /roots.c | |
parent | am c4e32005: am 17986e6b: am 8cd9e4f3: fix bug in applying patches (diff) | |
download | android_bootable_recovery-8101125ee5068aff91f98c042660cb29576b8612.tar android_bootable_recovery-8101125ee5068aff91f98c042660cb29576b8612.tar.gz android_bootable_recovery-8101125ee5068aff91f98c042660cb29576b8612.tar.bz2 android_bootable_recovery-8101125ee5068aff91f98c042660cb29576b8612.tar.lz android_bootable_recovery-8101125ee5068aff91f98c042660cb29576b8612.tar.xz android_bootable_recovery-8101125ee5068aff91f98c042660cb29576b8612.tar.zst android_bootable_recovery-8101125ee5068aff91f98c042660cb29576b8612.zip |
Diffstat (limited to 'roots.c')
-rw-r--r-- | roots.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -386,7 +386,7 @@ format_root_device(const char *root) if (strcmp(info->filesystem, "ext4") == 0) { LOGW("starting to reformat ext4\n"); reset_ext4fs_info(); - int result = make_ext4fs(info->device, NULL, NULL, 0, 0); + int result = make_ext4fs(info->device, NULL, NULL, 0, 0, 0); LOGW("finished reformat ext4: result = %d\n", result); if (result != 0) { LOGW("make_ext4fs failed: %d\n", result); |