1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Use int64 instead of int

Docker-DCO-1.1-Signed-off-by: Guillaume J. Charmes <guillaume@charmes.net> (github: creack)
This commit is contained in:
Guillaume J. Charmes 2014-05-11 06:12:48 -07:00
parent 0d78799db7
commit 62bfef59f7
No known key found for this signature in database
GPG key ID: B33E4642CB6E3FF3

View file

@ -30,7 +30,7 @@ type ReceiveSender interface {
}
const (
R int = 1 << (32 - 1 - iota)
R = iota
W
)