summaryrefslogtreecommitdiffstats
path: root/sys/netinet/if_ether.c
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2011-09-18 11:17:57 +0000
committermiod <miod@openbsd.org>2011-09-18 11:17:57 +0000
commit94b88d7ed8e86848c4adf35464ed80fe33a26eae (patch)
treebf19f8b72513e240de4fcafc403d9d9b92d9cb5c /sys/netinet/if_ether.c
parentTake into account the PIE bits when masking PDEs. (diff)
downloadwireguard-openbsd-94b88d7ed8e86848c4adf35464ed80fe33a26eae.tar.xz
wireguard-openbsd-94b88d7ed8e86848c4adf35464ed80fe33a26eae.zip
Fix various format string types to as a minimum match the width of the
variables being processed. ok bluhm@ henning@
Diffstat (limited to 'sys/netinet/if_ether.c')
-rw-r--r--sys/netinet/if_ether.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c
index 0991cb507ca..c9f459f24b2 100644
--- a/sys/netinet/if_ether.c
+++ b/sys/netinet/if_ether.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ether.c,v 1.92 2011/07/06 02:42:28 henning Exp $ */
+/* $OpenBSD: if_ether.c,v 1.93 2011/09/18 11:17:58 miod Exp $ */
/* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */
/*
@@ -1087,7 +1087,7 @@ db_show_radix_node(struct radix_node *rn, void *w, u_int id)
db_printf("rtentry=%p", rt);
- db_printf(" flags=0x%x refcnt=%d use=%ld expire=%ld rtableid %u\n",
+ db_printf(" flags=0x%x refcnt=%d use=%llu expire=%u rtableid %u\n",
rt->rt_flags, rt->rt_refcnt, rt->rt_use, rt->rt_expire, id);
db_printf(" key="); db_print_sa(rt_key(rt));