1
0
Fork 0
mirror of https://github.com/pnx/pinger.git synced 2026-06-16 03:24:54 +02:00

main.go: no need to return as it's the last statement

This commit is contained in:
Henrik Hautakoski 2026-05-11 17:33:52 +02:00
parent a4343fa706
commit b9c0d0b416

View file

@ -90,6 +90,5 @@ func main() {
fmt.Println("PING", pinger.Addr())
if err = pinger.Run(); err != nil {
fmt.Println("Error:", err)
return
}
}