aboutsummaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorBrian Feldman <green@FreeBSD.org>1999-12-18 23:26:26 +0000
committerBrian Feldman <green@FreeBSD.org>1999-12-18 23:26:26 +0000
commitee1dd7c481bd97b89e422ac61f626137f0eb21e9 (patch)
tree7416e5b54b5d971fac0ee2594fe6e8decdf6e49a /sys/net
parentd776d82c4d1f366d4288025fc627b09675013381 (diff)
downloadsrc-ee1dd7c481bd97b89e422ac61f626137f0eb21e9.tar.gz
src-ee1dd7c481bd97b89e422ac61f626137f0eb21e9.zip
Fix a broken macro usage. It had no semicolon.
Noticed by: eivind
Notes
Notes: svn path=/head/; revision=54796
Diffstat (limited to 'sys/net')
-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 0983fc05148f..feee4c4a5c1f 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 *);