diff options
Diffstat (limited to 'roots.cpp')
-rw-r--r-- | roots.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -274,7 +274,11 @@ int format_volume(const char* volume) { } if (strcmp(v->fs_type, "ext4") == 0) { +#ifdef USE_EXT4 int result = make_ext4fs(v->device, v->length, volume, sehandle); +#else + int result = 0; +#endif if (result != 0) { LOGE("format_volume: make_extf4fs failed on %s\n", v->device); return -1; |