From 5ff932dc6d35564a2be8d05d23657895c6c0c5f4 Mon Sep 17 00:00:00 2001 From: gabe Date: Thu, 3 Oct 2024 11:09:33 -0700 Subject: [PATCH] fix lint --- credential/status/statuslist2021.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/credential/status/statuslist2021.go b/credential/status/statuslist2021.go index 5e0dca9f..21984a6d 100644 --- a/credential/status/statuslist2021.go +++ b/credential/status/statuslist2021.go @@ -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