summaryrefslogtreecommitdiff
path: root/library/parallel_scan.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/parallel_scan.h')
-rw-r--r--library/parallel_scan.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/parallel_scan.h b/library/parallel_scan.h
index 5eaa6bd9..5c998969 100644
--- a/library/parallel_scan.h
+++ b/library/parallel_scan.h
@@ -45,7 +45,7 @@ bool operator<(const DirectoryKey& lhs, const DirectoryKey& rhs)
struct DirectoryValue
{
DirContainer dirCont;
- std::set<Zstring> failedReads; //relative postfixed names of directories that could not be read (empty for root), e.g. access denied, or temporal network drop
+ std::set<Zstring> failedReads; //relative postfixed names of directories that could not be read (empty string for root), e.g. access denied, or temporal network drop
};
bgstack15