gofmt: experiment: align values in map composites where possible

- gofmt -w src misc
- looking for feedback

R=rsc, r
CC=golang-dev
https://golang.org/cl/223076
This commit is contained in:
Robert Griesemer 2010-03-02 13:46:51 -08:00
parent 000416e795
commit c2e73307b5

View File

@ -34,11 +34,11 @@ func (h *clientHandshake) loop(writeChan chan<- interface{}, controlChan chan<-
finishedHash := newFinishedHash() finishedHash := newFinishedHash()
hello := &clientHelloMsg{ hello := &clientHelloMsg{
major: defaultMajor, major: defaultMajor,
minor: defaultMinor, minor: defaultMinor,
cipherSuites: []uint16{TLS_RSA_WITH_RC4_128_SHA}, cipherSuites: []uint16{TLS_RSA_WITH_RC4_128_SHA},
compressionMethods: []uint8{compressionNone}, compressionMethods: []uint8{compressionNone},
random: make([]byte, 32), random: make([]byte, 32),
} }
currentTime := uint32(config.Time()) currentTime := uint32(config.Time())