esp32: Fix small typo that will trigger an error when IPv6 is enabled

This commit is contained in:
Alan C. Assis 2021-04-02 21:53:05 -03:00 committed by Xiang Xiao
parent af3c76bb53
commit 18f88c35fc

View File

@ -1207,7 +1207,7 @@ static int wlan_ifup(FAR struct net_driver_s *dev)
(dev->d_ipaddr >> 16) & 0xff, dev->d_ipaddr >> 24);
#endif
#ifdef CONFIG_NET_IPv6
winfo("Bringing up: %04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
ninfo("Bringing up: %04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x\n",
dev->d_ipv6addr[0], dev->d_ipv6addr[1], dev->d_ipv6addr[2],
dev->d_ipv6addr[3], dev->d_ipv6addr[4], dev->d_ipv6addr[5],
dev->d_ipv6addr[6], dev->d_ipv6addr[7]);