summaryrefslogtreecommitdiff
path: root/FreeFileSync/Source/base/db_file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'FreeFileSync/Source/base/db_file.cpp')
-rw-r--r--FreeFileSync/Source/base/db_file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeFileSync/Source/base/db_file.cpp b/FreeFileSync/Source/base/db_file.cpp
index f15657a7..680242f9 100644
--- a/FreeFileSync/Source/base/db_file.cpp
+++ b/FreeFileSync/Source/base/db_file.cpp
@@ -295,7 +295,7 @@ public:
static std::shared_ptr<InSyncFolder> execute(bool leadStreamLeft, //throw FileError
const ByteArray& streamL,
const ByteArray& streamR,
- const std::wstring& displayFilePathL, //used for diagnostics only
+ const std::wstring& displayFilePathL, //for diagnostics only
const std::wstring& displayFilePathR)
{
auto decompStream = [&](const ByteArray& stream) -> ByteArray //throw FileError
bgstack15