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 fa0e7c2ec2
commit 2260de8bd6

View file

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