forked from TrueCloudLab/restic
Always cast link counter to uint64
This commit is contained in:
parent
84ad6cf4d2
commit
d44eb9d794
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ func (node *Node) fill_extra(path string, fi os.FileInfo) (err error) {
|
||||||
switch node.Type {
|
switch node.Type {
|
||||||
case "file":
|
case "file":
|
||||||
node.Size = uint64(stat.Size)
|
node.Size = uint64(stat.Size)
|
||||||
node.Links = stat.Nlink
|
node.Links = uint64(stat.Nlink)
|
||||||
case "dir":
|
case "dir":
|
||||||
// nothing to do
|
// nothing to do
|
||||||
case "symlink":
|
case "symlink":
|
||||||
|
|
Loading…
Reference in a new issue