From c646e514dbf458b6e901a23bb601f4aea88937a4 Mon Sep 17 00:00:00 2001 From: Qiang Huang Date: Wed, 20 May 2015 10:45:04 +0800 Subject: [PATCH] Fix unit-test build error on ARM64 Signed-off-by: Qiang Huang --- pkg/archive/archive_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/archive/archive_test.go b/pkg/archive/archive_test.go index f24f628c2f..0bf878e0ae 100644 --- a/pkg/archive/archive_test.go +++ b/pkg/archive/archive_test.go @@ -873,7 +873,8 @@ func getNlink(path string) (uint64, error) { if !ok { return 0, fmt.Errorf("expected type *syscall.Stat_t, got %t", stat.Sys()) } - return statT.Nlink, nil + // We need this conversion on ARM64 + return uint64(statT.Nlink), nil } func getInode(path string) (uint64, error) {