Skip to content

Commit ed80abc

Browse files
committed
Fix type msg
1 parent 964e7c5 commit ed80abc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func NewReader(path string, check bool) (*ImageReader, error) {
2929
}
3030

3131
if header.Magic != Magic {
32-
return nil, fmt.Errorf("incorrect crc: should %08X but is %08X", Magic, header.Magic)
32+
return nil, fmt.Errorf("incorrect magic: should %08X but is %08X", Magic, header.Magic)
3333
}
3434

3535
if check {

0 commit comments

Comments
 (0)