Skip to content

Commit

Permalink
Fix commit c224905
Browse files Browse the repository at this point in the history
  • Loading branch information
dalf committed Sep 14, 2024
1 parent 06fdf7c commit ac18c1b
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 ac18c1b

Please sign in to comment.