Skip to content

Commit

Permalink
Merge pull request #37 from dalf/fix_issue_36
Browse files Browse the repository at this point in the history
Fix commit c224905
  • Loading branch information
tizbac authored Sep 18, 2024
2 parents 06fdf7c + ac18c1b commit 6578881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ func (c *ChunkState) Init() {
}

func main() {
var newchunk *atomic.Uint64
var reusechunk *atomic.Uint64
var newchunk *atomic.Uint64 = new(atomic.Uint64)
var reusechunk *atomic.Uint64 = new(atomic.Uint64)

cfg := loadConfig()

Expand Down

0 comments on commit 6578881

Please sign in to comment.