projects
/
docker.io.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2113dda
)
mips-fix-devnumber
author
Arnaud Rebillout
<arnaud.rebillout@collabora.com>
Tue, 8 Oct 2019 03:37:25 +0000
(
04:37
+0100)
committer
Dmitry Smirnov
<onlyjob@debian.org>
Tue, 8 Oct 2019 03:37:25 +0000
(
04:37
+0100)
~~~~
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
patch
|
blob
|
history
diff --git
a/engine/pkg/system/stat_linux.go
b/engine/pkg/system/stat_linux.go
index 98c9eb18d18d83496315fc38a845821b26e530e8..8a090a53d9b735868682537c43cc534e0329eefc 100644
(file)
--- 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
}