Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit 5ff932d

Browse files
author
gabe
committed
fix lint
1 parent f31fd07 commit 5ff932d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

credential/status/statuslist2021.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ func bitstringExpansion(compressedBitstring string) ([]string, error) {
242242
var i uint
243243
for i = 0; i < b.Len(); i++ {
244244
if b.Test(i) {
245-
expanded = append(expanded, strconv.Itoa(int(i)))
245+
expanded = append(expanded, strconv.FormatUint(uint64(i), 10))
246246
}
247247
}
248248
return expanded, nil

0 commit comments

Comments
 (0)