mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Drop a pointless cast of ifp->if_softc to (struct tap_softc *).
This commit is contained in:
parent
e9a404fffd
commit
6a51be11da
1 changed files with 1 additions and 1 deletions
|
|
@ -496,7 +496,7 @@ tapifinit(void *xtp)
|
|||
static int
|
||||
tapifioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
|
||||
{
|
||||
struct tap_softc *tp = (struct tap_softc *)(ifp->if_softc);
|
||||
struct tap_softc *tp = ifp->if_softc;
|
||||
struct ifstat *ifs = NULL;
|
||||
int s, dummy;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue