Make the compiler happy after r201125:

- + remove two unnecessary initializations in ip_output;
+ + remove one unnecessary initializations in ip_output;
This commit is contained in:
Bjoern A. Zeeb 2009-12-28 21:14:18 +00:00
parent 70ad88f354
commit fc74d005d9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201141

View File

@ -113,7 +113,7 @@ ip_output(struct mbuf *m, struct mbuf *opt, struct route *ro, int flags,
struct ip_moptions *imo, struct inpcb *inp)
{
struct ip *ip;
struct ifnet *ifp;
struct ifnet *ifp = NULL; /* keep compiler happy */
struct mbuf *m0;
int hlen = sizeof (struct ip);
int mtu;