Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe committed Oct 3, 2024
1 parent f31fd07 commit 5ff932d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion credential/status/statuslist2021.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ func bitstringExpansion(compressedBitstring string) ([]string, error) {
var i uint
for i = 0; i < b.Len(); i++ {
if b.Test(i) {
expanded = append(expanded, strconv.Itoa(int(i)))
expanded = append(expanded, strconv.FormatUint(uint64(i), 10))
}
}
return expanded, nil
Expand Down

0 comments on commit 5ff932d

Please sign in to comment.