mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-06 20:29:04 +00:00
fix ethernet_input() return code warning.
This commit is contained in:
parent
0b8b9e8033
commit
c81d0f3393
@ -214,7 +214,7 @@ igmp_timer(void *arg)
|
||||
* @param p the recevied packet, p->payload pointing to the ethernet header
|
||||
* @param netif the network interface on which the packet was received
|
||||
*/
|
||||
static void
|
||||
static err_t
|
||||
ethernet_input(struct pbuf *p, struct netif *netif)
|
||||
{
|
||||
struct eth_hdr* ethhdr;
|
||||
@ -259,6 +259,8 @@ ethernet_input(struct pbuf *p, struct netif *netif)
|
||||
p = NULL;
|
||||
break;
|
||||
}
|
||||
|
||||
return ERR_OK; /* return value ignored */
|
||||
}
|
||||
#endif /* ETHARP_TCPIP_ETHINPUT */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user