diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2020-06-21 05:19:28 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2020-06-21 05:19:28 +0000 |
commit | c7b329e05dd96c9a121afc63bcf6e4d3efb2f366 (patch) | |
tree | ddf22ce4c6523d1941aa315f3bc8f3ac7125151d /sys | |
parent | 5b5b712a65cefbc7ce23cfb4c5ec4ed0b944eb8d (diff) |
wrap a long line. no functional change.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/udp_usrreq.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index ee65e5f8d1c..d05e1c2ed22 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.258 2020/06/21 05:17:15 dlg Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.259 2020/06/21 05:19:27 dlg Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -592,7 +592,8 @@ udp_sbappend(struct inpcb *inp, struct mbuf *m, struct ip *ip, hlen += sizeof(*uh); if (inp->inp_upcall != NULL) { - m = (*inp->inp_upcall)(inp->inp_upcall_arg, m, ip, ip6, uh, hlen); + m = (*inp->inp_upcall)(inp->inp_upcall_arg, m, + ip, ip6, uh, hlen); if (m == NULL) return; } |