diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2021-07-27 19:43:08 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2021-07-27 19:45:03 +0000 |
commit | c007408c245b7aff0f203b021e70f263e57d5173 (patch) | |
tree | 77f0eead4d4e736167ddaa05eadb8b64ecb6e630 | |
parent | 2531f067ea0e9c77b081445800de8e9584d7d4ab (diff) |
Fix the spelling of '*/' in the vnic driver
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | sys/dev/vnic/nicvf_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/vnic/nicvf_main.c b/sys/dev/vnic/nicvf_main.c index 73591a0b161a..1dc49ee855a9 100644 --- a/sys/dev/vnic/nicvf_main.c +++ b/sys/dev/vnic/nicvf_main.c @@ -485,7 +485,7 @@ nicvf_if_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) { if ((flags ^ nic->if_flags) & IFF_PROMISC) { /* Change promiscous mode */ -#if 0 /* XXX* / +#if 0 /* XXX */ nicvf_set_promiscous(nic); #endif } |