Fix checksum hex padding
This commit is contained in:
@@ -98,7 +98,7 @@ func (p Pos) String() string {
|
||||
if p.IsZero() {
|
||||
return "<>"
|
||||
}
|
||||
return fmt.Sprintf("<%s,%d,%d>", p.Generation, p.Index, p.Offset)
|
||||
return fmt.Sprintf("<%s,%08x,%d>", p.Generation, p.Index, p.Offset)
|
||||
}
|
||||
|
||||
// IsZero returns true if p is the zero value.
|
||||
|
||||
Reference in New Issue
Block a user