From b461f356a30ad83f563d27e026aa78c91d32b30c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Mar 2023 23:15:50 +0000 Subject: [PATCH] ci(chore): Fix stylings --- client/global.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/global.go b/client/global.go index f0ab8998..cf90ad48 100644 --- a/client/global.go +++ b/client/global.go @@ -93,7 +93,7 @@ func GenIMEI() string { for i := 0; i < 14; i++ { // generating all the base digits toAdd := randGen.Intn(10) fmt.Fprintf(&final, "%d", toAdd) // printing them here! - if (i+1)%2 == 0 { // special proc for every 2nd one + if (i+1)%2 == 0 { // special proc for every 2nd one toAdd *= 2 if toAdd >= 10 { toAdd = (toAdd % 10) + 1