summaryrefslogtreecommitdiffstats
path: root/twrp-functions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'twrp-functions.cpp')
-rw-r--r--twrp-functions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/twrp-functions.cpp b/twrp-functions.cpp
index fd974d234..2128c9635 100644
--- a/twrp-functions.cpp
+++ b/twrp-functions.cpp
@@ -550,7 +550,7 @@ int TWFunc::removeDir(const string path, bool skipParent) {
if (p->d_type == DT_DIR) {
r = removeDir(new_path, true);
if (!r) {
- if (p->d_type == DT_DIR)
+ if (p->d_type == DT_DIR)
r = rmdir(new_path.c_str());
else
LOGINFO("Unable to removeDir '%s': %s\n", new_path.c_str(), strerror(errno));
@@ -564,7 +564,7 @@ int TWFunc::removeDir(const string path, bool skipParent) {
}
closedir(d);
- if (!r) {
+ if (!r) {
if (skipParent)
return 0;
else