mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-04 23:29:25 +00:00
ip4: forward: try to fix the build...
... by adding a default case
This commit is contained in:
parent
38894637e7
commit
5de4967f23
@ -365,6 +365,9 @@ ip4_forward(struct pbuf *p, struct ip_hdr *iphdr, struct netif *inp)
|
||||
}
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
/* there's really nothing to do here other than satisfying 'switch-default' */
|
||||
break;
|
||||
}
|
||||
|
||||
LWIP_DEBUGF(IP_DEBUG, ("ip4_forward: forwarding packet to %"U16_F".%"U16_F".%"U16_F".%"U16_F"\n",
|
||||
|
Loading…
Reference in New Issue
Block a user