From fafb0c541bb4b24515c57251a44d87825eec90fb Mon Sep 17 00:00:00 2001 From: Vojtech Bocek Date: Thu, 25 Jul 2013 22:53:02 +0200 Subject: Unify indentation and little clean-up in TWRP files Signed-off-by: Vojtech Bocek --- partitionmanager.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'partitionmanager.cpp') diff --git a/partitionmanager.cpp b/partitionmanager.cpp index 71e5e34f3..77cf37e50 100644 --- a/partitionmanager.cpp +++ b/partitionmanager.cpp @@ -1104,14 +1104,14 @@ int TWPartitionManager::Wipe_Dalvik_Cache(void) { } } TWPartition* sdext = Find_Partition_By_Path("/sd-ext"); - if (sdext != NULL) { - if (sdext->Is_Present && sdext->Mount(false)) { - if (stat("/sd-ext/dalvik-cache", &st) == 0) { - TWFunc::removeDir("/sd-ext/dalvik-cache", false); - gui_print("Cleaned: /sd-ext/dalvik-cache...\n"); - } + if (sdext && sdext->Is_Present && sdext->Mount(false)) + { + if (stat("/sd-ext/dalvik-cache", &st) == 0) + { + TWFunc::removeDir("/sd-ext/dalvik-cache", false); + gui_print("Cleaned: /sd-ext/dalvik-cache...\n"); } - } + } gui_print("-- Dalvik Cache Directories Wipe Complete!\n\n"); return true; } @@ -1893,4 +1893,4 @@ void TWPartitionManager::Output_Storage_Fstab(void) { } } fclose(fp); -} \ No newline at end of file +} -- cgit v1.2.3