diff options
-rw-r--r-- | partition.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/partition.cpp b/partition.cpp index 1f57a534f..543e8674b 100644 --- a/partition.cpp +++ b/partition.cpp @@ -2124,7 +2124,7 @@ bool TWPartition::Wipe_Data_Without_Wiping_Media_Func(const string& parent __unu } rmdir(dir.c_str()); } else if (de->d_type == DT_REG || de->d_type == DT_LNK || de->d_type == DT_FIFO || de->d_type == DT_SOCK) { - if (!unlink(dir.c_str())) + if (unlink(dir.c_str()) != 0) LOGINFO("Unable to unlink '%s': %s\n", dir.c_str(), strerror(errno)); } } |