Skip to content

Commit 975348e

Browse files
committed
fix: variable reference
1 parent bdac9eb commit 975348e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

chars.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,7 @@ func GetFailures(commaList string, allStats *[]SpecialChars) uint64 {
375375
if failed > 0 {
376376
totalFailures += failed
377377
(*allStats)[i].Failure = true
378-
failedAllStats = append(failedAllStats, &(*allStats)[i])
379-
378+
failedAllStats = append(failedAllStats, (*allStats)[i])
380379
}
381380
}
382381
return totalFailures

0 commit comments

Comments
 (0)