R=r
DELTA=2 (0 added, 0 deleted, 2 changed)
OCL=34860
CL=34864
type FormatError string
func (e FormatError) String() string {
- return "invalid PNG format: " + e;
+ return "invalid PNG format: " + string(e);
}
var chunkOrderError = FormatError("chunk out of order")
type UnsupportedError string
func (e UnsupportedError) String() string {
- return "unsupported PNG feature: " + e;
+ return "unsupported PNG feature: " + string(e);
}
// Big-endian.