added missing semicolon

Submitted by:	 Jeffrey Hsu <hsu@freefall.freebsd.org>
This commit is contained in:
scrappy 1996-05-26 22:05:36 +00:00
parent ff892d71a9
commit 18de1334a2

View File

@ -158,7 +158,7 @@ tunopen(dev, flag, mode, p)
return (ENXIO);
tp = &tunctl[unit];
if (tp->tun_flags & TUN_OPEN)
return EBUSY
return EBUSY;
ifp = &tp->tun_if;
tp->tun_flags |= TUN_OPEN;
TUNDEBUG("%s%d: open\n", ifp->if_name, ifp->if_unit);