diff options
author | Koushik Dutta <koushd@gmail.com> | 2011-01-02 14:11:24 -0800 |
---|---|---|
committer | Koushik Dutta <koushd@gmail.com> | 2011-01-02 14:11:24 -0800 |
commit | 9f52e5f23b0eaf24cb5acd10d3c0c0af4d2c6727 (patch) | |
tree | 17c76ab5400f1bcdc89a60927178e68e7865fd7d /roots.c | |
parent | 67c381a6faa5711ad85d65038f2349aeccddd283 (diff) | |
download | android_bootable_recovery-9f52e5f23b0eaf24cb5acd10d3c0c0af4d2c6727.tar.gz android_bootable_recovery-9f52e5f23b0eaf24cb5acd10d3c0c0af4d2c6727.tar.bz2 android_bootable_recovery-9f52e5f23b0eaf24cb5acd10d3c0c0af4d2c6727.zip |
fix android secure formatting
Change-Id: I617b8c453aad6d306cf8ddbc1a067c59ead56573
Diffstat (limited to 'roots.c')
-rw-r--r-- | roots.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -213,8 +213,11 @@ int format_volume(const char* volume) { return -1; } if (strcmp(v->mount_point, volume) != 0) { +#if 0 LOGE("can't give path \"%s\" to format_volume\n", volume); return -1; +#endif + return format_unknown_device(v->device, volume, NULL); } if (ensure_path_unmounted(volume) != 0) { |