Bunch of small warnings and stylistic things...

This commit is contained in:
Adam Ierymenko 2019-09-30 11:10:47 -07:00
parent f680924585
commit e4799ff8c4
No known key found for this signature in database
GPG key ID: C8877CF2D7A5D7F3
21 changed files with 228 additions and 119 deletions

View file

@ -36,7 +36,7 @@ func NewMACFromString(s string) (MAC, error) {
if c > 0xff {
return MAC(0), ErrInvalidMACAddress
}
m |= (c & 0xff)
m |= c & 0xff
}
return MAC(m), nil
}