Skip to content

Commit

Permalink
fixup! refactoring: specific types
Browse files Browse the repository at this point in the history
  • Loading branch information
vbauerster committed Aug 26, 2022
1 parent 877b284 commit d601210
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _examples/barExtenderRev/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ func main() {
),
)

tb.SetTotal(int64(total), false)
tb.SetTotal(total, false)

for _, t := range tasks {
atomic.StoreUint32(&curTask, uint32(t.id))
atomic.StoreUint32(&curTask, t.id)
complete(tb, t)
atomic.AddUint32(&doneTasks, 1)
}
Expand Down

0 comments on commit d601210

Please sign in to comment.