summaryrefslogtreecommitdiff
path: root/algorithm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'algorithm.cpp')
-rw-r--r--algorithm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/algorithm.cpp b/algorithm.cpp
index 05b840ff..b7adc039 100644
--- a/algorithm.cpp
+++ b/algorithm.cpp
@@ -261,7 +261,7 @@ bool isEqual(const SymLinkMapping& linkObj, const InSyncDir::LinkList::value_typ
const LinkDescriptor& descrDb = getDescriptor<side>(dbLink->second);
return linkObj.getShortName<side>() == shortNameDb &&
- //respect 2 second FAT/FAT32 precision! copying a file to a FAT32 drive changes it's modification date by up to 2 seconds
+ //respect 2 second FAT/FAT32 precision! copying a file to a FAT32 drive changes its modification date by up to 2 seconds
sameFileTime(linkObj.getLastWriteTime<side>(), descrDb.lastWriteTimeRaw, 2) &&
#ifdef FFS_WIN //comparison of symbolic link type is relevant for Windows only
linkObj.getLinkType<side>() == descrDb.type &&
bgstack15