added missing semicolon

Submitted by:	 Jeffrey Hsu <hsu@freefall.freebsd.org>
This commit is contained in:
Marc G. Fournier 1996-05-26 22:05:36 +00:00
parent cfbaf65d93
commit 51d976f16a

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);