summaryrefslogtreecommitdiffhomepage
path: root/runsc/fsgofer
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2019-10-29 18:32:09 +0000
committergVisor bot <gvisor-bot@google.com>2019-10-29 18:32:09 +0000
commit862aefb66429be48e5910f72c8e1bc3b6b78e6f4 (patch)
tree47973f155ef5712a382be888bdf44fca20de9451 /runsc/fsgofer
parenta6d4910f452bcac488ba71d3b9aac89c97ee32bc (diff)
parent8b04e2dd8bb1afddf88c7f68949364b66afb8df5 (diff)
Merge release-20190806.1-336-g8b04e2d (automated)
Diffstat (limited to 'runsc/fsgofer')
-rw-r--r--runsc/fsgofer/fsgofer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/fsgofer/fsgofer.go b/runsc/fsgofer/fsgofer.go
index 3fceecb3d..18b853e2e 100644
--- a/runsc/fsgofer/fsgofer.go
+++ b/runsc/fsgofer/fsgofer.go
@@ -601,7 +601,7 @@ func (l *localFile) GetAttr(_ p9.AttrMask) (p9.QID, p9.AttrMask, p9.Attr, error)
Mode: p9.FileMode(stat.Mode),
UID: p9.UID(stat.Uid),
GID: p9.GID(stat.Gid),
- NLink: stat.Nlink,
+ NLink: uint64(stat.Nlink),
RDev: stat.Rdev,
Size: uint64(stat.Size),
BlockSize: uint64(stat.Blksize),