From c163f49e12e324849fd09d52bb81712bc570950e Mon Sep 17 00:00:00 2001 From: Dmitry Smirnov Date: Mon, 13 May 2019 03:34:45 +0100 Subject: [PATCH] mips-fix-devnumber ~~~~ github.com/docker/docker/pkg/system/stat_linux.go:13:7: cannot use s.Rdev (type uint32) as type uint64 in field value ~~~~ Gbp-Pq: Name mips-fix-devnumber.patch --- engine/pkg/system/stat_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/pkg/system/stat_linux.go b/engine/pkg/system/stat_linux.go index 98c9eb18..8a090a53 100644 --- a/engine/pkg/system/stat_linux.go +++ b/engine/pkg/system/stat_linux.go @@ -8,7 +8,7 @@ func fromStatT(s *syscall.Stat_t) (*StatT, error) { mode: s.Mode, uid: s.Uid, gid: s.Gid, - rdev: s.Rdev, + rdev: uint64(s.Rdev), mtim: s.Mtim}, nil } -- 2.30.2