From 781acc1e711e1e2e308cffcd42fba45684637ac1 Mon Sep 17 00:00:00 2001 From: Arnaud Rebillout Date: Tue, 12 Nov 2019 01:18:22 +0000 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