From: jan Date: Mon, 10 Jan 2022 14:07:59 +0000 (+0000) Subject: Use NULL instead of 0 for pointers. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=464281213f5adf72f9dd19fb0627928818b3f0a3;p=openbsd Use NULL instead of 0 for pointers. OK bluhm@ --- diff --git a/sys/net/if_vxlan.c b/sys/net/if_vxlan.c index 8d7fae6888b..27ea46f7461 100644 --- a/sys/net/if_vxlan.c +++ b/sys/net/if_vxlan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vxlan.c,v 1.82 2021/02/25 02:48:21 dlg Exp $ */ +/* $OpenBSD: if_vxlan.c,v 1.83 2022/01/10 14:07:59 jan Exp $ */ /* * Copyright (c) 2013 Reyk Floeter @@ -950,7 +950,7 @@ vxlan_output(struct ifnet *ifp, struct mbuf *m) break; #ifdef INET6 case AF_INET6: - error = ip6_output(m, 0, NULL, IPV6_MINMTU, 0, NULL); + error = ip6_output(m, NULL, NULL, IPV6_MINMTU, NULL, NULL); break; #endif /* INET6 */ default: