Skip to content

Commit 9d4f8bf

Browse files
committed
fix: lint
1 parent 0a12528 commit 9d4f8bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

veth/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func printTable(links []netlink.Link) string {
6363
ipList := make([]string, 0, len(addrs))
6464
for _, addr := range addrs {
6565
if addr.IPNet != nil {
66-
ipList = append(ipList, addr.IPNet.IP.String())
66+
ipList = append(ipList, addr.IP.String())
6767
}
6868
}
6969
if len(ipList) > 0 {

0 commit comments

Comments
 (0)