fixed some logs and comments

This commit is contained in:
Flaminel
2025-03-25 10:55:37 +02:00
parent 4a1e0f6896
commit 3b63d1b7e5
2 changed files with 4 additions and 4 deletions
@@ -31,7 +31,7 @@ public class UnixHardLinkFileService : IHardLinkFileService, IDisposable
return (long)stat.st_nlink == 1 ? 0 : 1;
}
// subtract the number of hardlinks in the same root directory
// get the number of hardlinks in the same root directory
int linksInIgnoredDir = _inodeCounts.TryGetValue(stat.st_ino, out int count)
? count
: 1; // default to 1 if not found