Skip to content

Commit

Permalink
caps
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdyoung committed Jan 19, 2023
1 parent 3e2559a commit 204205f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,14 @@ const NMDebugModeConf = `
domains=ALL:DEBUG
`

func NormalizeCPUArchitecture(Arch string) string {
switch Arch {
func NormalizeCPUArchitecture(arch string) string {
switch arch {
case AMD64CPUArchitecture:
return X86CPUArchitecture
case AARCH64CPUArchitecture:
return ARM64CPUArchitecture
default:
return Arch
return arch
}
}

Expand Down

0 comments on commit 204205f

Please sign in to comment.