1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-16 00:00:05 +01:00

nlink() -> Nlink take 2

This commit is contained in:
jgfrm 2017-02-06 20:27:37 +01:00
parent e0f1ce6336
commit 9fda3d0938

View file

@ -39,7 +39,7 @@ func (e *dirEntry) equals(other *dirEntry) bool {
}
if stat.Nlink != stat2.Nlink {
fmt.Fprintf(os.Stderr, "%v: Number of links doe not match (%v != %v)\n", e.path, stat.nlink(), stat2.nlink())
fmt.Fprintf(os.Stderr, "%v: Number of links doe not match (%v != %v)\n", e.path, stat.Nlink, stat2.Nlink)
return false
}