From 9fda3d09382361762c979ea1d12ebf848fe22f9b Mon Sep 17 00:00:00 2001 From: jgfrm Date: Mon, 6 Feb 2017 20:27:37 +0100 Subject: [PATCH] nlink() -> Nlink take 2 --- src/cmds/restic/integration_helpers_unix_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmds/restic/integration_helpers_unix_test.go b/src/cmds/restic/integration_helpers_unix_test.go index faa267bf1..e460514f1 100644 --- a/src/cmds/restic/integration_helpers_unix_test.go +++ b/src/cmds/restic/integration_helpers_unix_test.go @@ -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 }