Fix tcp_send_unbuffered when NET_ETHERNET is not defined.

This commit is contained in:
Alan Carvalho de Assis 2015-09-07 13:31:35 -06:00 committed by Gregory Nutt
parent bc46130c70
commit f10a103108

View File

@ -260,7 +260,7 @@ static inline bool psock_send_addrchck(FAR struct tcp_conn_s *conn)
}
#else /* CONFIG_NET_ETHERNET */
# psock_send_addrchck(r) (true)
# define psock_send_addrchck(r) (true)
#endif /* CONFIG_NET_ETHERNET */
/****************************************************************************