We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 964e7c5 commit ed80abcCopy full SHA for ed80abc
reader.go
@@ -29,7 +29,7 @@ func NewReader(path string, check bool) (*ImageReader, error) {
29
}
30
31
if header.Magic != Magic {
32
- return nil, fmt.Errorf("incorrect crc: should %08X but is %08X", Magic, header.Magic)
+ return nil, fmt.Errorf("incorrect magic: should %08X but is %08X", Magic, header.Magic)
33
34
35
if check {
0 commit comments