diff options
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_iso88025subr.c | 2 |
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 *); |