Skip to content

Commit

Permalink
caps
Browse files Browse the repository at this point in the history
  • Loading branch information
bdon committed Mar 7, 2024
1 parent b8f1073 commit 58c946d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pmtiles/makesync.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func serializeSyncBlocks(output io.Writer, blocks []syncBlock) {
}
}

func deserializesyncBlocks(numBlocks int, reader *bufio.Reader) []syncBlock {
func deserializeSyncBlocks(numBlocks int, reader *bufio.Reader) []syncBlock {
blocks := make([]syncBlock, 0)

lastStartID := uint64(0)
Expand Down Expand Up @@ -271,7 +271,7 @@ func Sync(logger *log.Logger, file string, syncfilename string, overfetch float3

json.Unmarshal(jsonBytes, &metadata)

blocks := deserializesyncBlocks(metadata.NumBlocks, bufferedReader)
blocks := deserializeSyncBlocks(metadata.NumBlocks, bufferedReader)

ctx := context.Background()

Expand Down

0 comments on commit 58c946d

Please sign in to comment.