summaryrefslogtreecommitdiffstats
path: root/sys/net/if_iso88025subr.c
diff options
context:
space:
mode:
authorgreen <green@FreeBSD.org>1999-12-18 23:26:26 +0000
committergreen <green@FreeBSD.org>1999-12-18 23:26:26 +0000
commit55d5a145e52eae16d903e90650a2b03b2f308f77 (patch)
tree08d08f855e8f666119cdc996b446367c887ea795 /sys/net/if_iso88025subr.c
parentc110f988cc470a0ed625ce69775e1eb85761505f (diff)
downloadFreeBSD-src-55d5a145e52eae16d903e90650a2b03b2f308f77.zip
FreeBSD-src-55d5a145e52eae16d903e90650a2b03b2f308f77.tar.gz
Fix a broken macro usage. It had no semicolon.
Noticed by: eivind
Diffstat (limited to 'sys/net/if_iso88025subr.c')
-rw-r--r--sys/net/if_iso88025subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_iso88025subr.c b/sys/net/if_iso88025subr.c
index 0983fc0..feee4c4 100644
--- a/sys/net/if_iso88025subr.c
+++ b/sys/net/if_iso88025subr.c
@@ -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 *);
OpenPOWER on IntegriCloud