Fix a broken macro usage. It had no semicolon.

Noticed by:	eivind
This commit is contained in:
Brian Feldman 1999-12-18 23:26:26 +00:00
parent d776d82c4d
commit ee1dd7c481

View File

@ -230,7 +230,7 @@ iso88025_output(ifp, m0, dst, rt0)
if (!arpresolve(ac, rt, m, dst, edst, rt0))
return (0); /* if not yet resolved */
/* Add LLC and SNAP headers */
M_PREPEND(m, 8, M_DONTWAIT)
M_PREPEND(m, 8, M_DONTWAIT);
if (m == 0)
senderr(ENOBUFS);
l = mtod(m, struct llc *);