summaryrefslogtreecommitdiff
path: root/zen/file_access.cpp
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-11-22 08:54:34 -0500
committerB. Stack <bgstack15@gmail.com>2022-11-22 08:54:34 -0500
commita034cfca98d4408b175938740628a54f57eb7614 (patch)
tree501fd78c6276c0be8be8d2c671a58dd0598060b5 /zen/file_access.cpp
parentadd upstream 11.27 (diff)
downloadFreeFileSync-a034cfca98d4408b175938740628a54f57eb7614.tar.gz
FreeFileSync-a034cfca98d4408b175938740628a54f57eb7614.tar.bz2
FreeFileSync-a034cfca98d4408b175938740628a54f57eb7614.zip
add upstream 11.2811.28
Diffstat (limited to 'zen/file_access.cpp')
-rw-r--r--zen/file_access.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/zen/file_access.cpp b/zen/file_access.cpp
index a52ea9b8..01dda68c 100644
--- a/zen/file_access.cpp
+++ b/zen/file_access.cpp
@@ -126,9 +126,6 @@ namespace
int64_t zen::getFreeDiskSpace(const Zstring& folderPath) //throw FileError
{
const auto& [existingPath, existingType] = getExistingPath(folderPath); //throw FileError
-
- warn_static("what if existingType is symlink?")
-
try
{
struct statfs info = {};
bgstack15