From cf3dd193524cba52714cbdcda682bd00410ea124 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 26 Jun 2018 07:01:27 -0600 Subject: [PATCH] Fix a typo. --- net/udp/udp_finddev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/udp/udp_finddev.c b/net/udp/udp_finddev.c index 18827820dd..0739cec6d3 100644 --- a/net/udp/udp_finddev.c +++ b/net/udp/udp_finddev.c @@ -71,7 +71,7 @@ ****************************************************************************/ #ifdef CONFIG_NET_UDP_BINDTODEVICE -FAR struct net_driver_s *upd_bound_device(FAR struct udp_conn_s *conn) +static FAR struct net_driver_s *upd_bound_device(FAR struct udp_conn_s *conn) { FAR struct net_driver_s *dev = NULL; @@ -90,7 +90,7 @@ FAR struct net_driver_s *upd_bound_device(FAR struct udp_conn_s *conn) * socket. */ - conn->bounto = 0; + conn->boundto = 0; } }