go.image/bmp: fix warnings from go vet

reader.go:138:10: image.Config struct literal uses untagged fields
reader.go:144:10: image.Config struct literal uses untagged fields

R=nigeltao
CC=golang-dev
https://golang.org/cl/5825047
This commit is contained in:
Benny Siegert 2012-03-15 09:44:37 +11:00 committed by Nigel Tao
parent 20e9620e99
commit 27e7e9451c

View File

@ -135,13 +135,13 @@ func DecodeConfig(r io.Reader) (config image.Config, err error) {
// Every 4th byte is padding.
pcm[i] = color.RGBA{b[4*i+2], b[4*i+1], b[4*i+0], 0xFF}
}
return image.Config{pcm, width, height}, nil
return image.Config{ColorModel: pcm, Width: width, Height: height}, nil
case 24:
if offset != fileHeaderLen+infoHeaderLen {
err = ErrUnsupported
return
}
return image.Config{color.RGBAModel, width, height}, nil
return image.Config{ColorModel: color.RGBAModel, Width: width, Height: height}, nil
}
err = ErrUnsupported
return