Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gballet committed Jun 22, 2020
1 parent 771601b commit 8968457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpu/cpu_dragonfly.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func parseDmesgBoot(fileName string) (InfoStat, error) {
c.Model = matches[4]
t, err := strconv.ParseInt(matches[5], 10, 32)
if err != nil {
return c, 0, fmt.Errorf("unable to parse FreeBSD CPU stepping information from %q: %v", line, err)
return c, fmt.Errorf("unable to parse FreeBSD CPU stepping information from %q: %v", line, err)
}
c.Stepping = int32(t)
} else if matches := featuresMatch.FindStringSubmatch(line); matches != nil {
Expand Down

0 comments on commit 8968457

Please sign in to comment.