Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
Signed-off-by: jalev <qweet.ing@gmail.com>
  • Loading branch information
jalev committed Dec 16, 2022
1 parent 5d6e98c commit e406af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collector/arp_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func getTotalArpEntries(deviceEntries []procfs.ARPEntry) map[string]uint32 {
entries := make(map[string]uint32)

for _, device := range deviceEntries {
entries[device.Device] += 1
entries[device.Device]++
}

return entries
Expand Down

0 comments on commit e406af7

Please sign in to comment.