Fix one more compiler warning, m is not initialized.

This commit is contained in:
Konstantin Belousov 2014-08-08 15:50:02 +00:00
parent c737a387f5
commit 1216eb3320
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=269726

View File

@ -1436,7 +1436,7 @@ igmp_input(struct mbuf **mp, int *offp, int proto)
int minlen;
int queryver;
CTR3(KTR_IGMPV3, "%s: called w/mbuf (%p,%d)", __func__, m, *offp);
CTR3(KTR_IGMPV3, "%s: called w/mbuf (%p,%d)", __func__, *mp, *offp);
m = *mp;
ifp = m->m_pkthdr.rcvif;