1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Fix warning; remove unused arg that was passed through uninitialized.

This commit is contained in:
Peter Wemm 2002-05-24 06:10:25 +00:00
parent 34e3110c70
commit 46d870bc0c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97220

View File

@ -248,7 +248,7 @@ ef_start(struct ifnet *ifp)
* parameter passing but simplify the code
*/
static int __inline
ef_inputEII(struct mbuf *m, struct ether_header *eh, struct llc* l,
ef_inputEII(struct mbuf *m, struct ether_header *eh,
u_short ether_type, struct ifqueue **inq)
{
switch(ether_type) {
@ -388,7 +388,7 @@ ef_input(struct ifnet *ifp, struct ether_header *eh, struct mbuf *m)
inq = NULL;
switch(ft) {
case ETHER_FT_EII:
if (ef_inputEII(m, eh, l, ether_type, &inq) != 0)
if (ef_inputEII(m, eh, ether_type, &inq) != 0)
return EPROTONOSUPPORT;
break;
#ifdef IPX