Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bdon committed Jan 6, 2025
1 parent 34454ab commit 9a1abad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pmtiles/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func Verify(_ *log.Logger, file string) error {
lengthFromHeader := int64(HeaderV3LenBytes + header.RootLength + header.MetadataLength + header.LeafDirectoryLength + header.TileDataLength)

if fileInfo.Size() != lengthFromHeader {
return fmt.Errorf("Total length of archive %v does not match header %v:", fileInfo.Size(), lengthFromHeader)
return fmt.Errorf("Total length of archive %v does not match header %v", fileInfo.Size(), lengthFromHeader)
}

var CollectEntries func(uint64, uint64, func(EntryV3))
Expand Down

0 comments on commit 9a1abad

Please sign in to comment.