summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBret Lambert <blambert@cvs.openbsd.org>2009-07-09 06:40:21 +0000
committerBret Lambert <blambert@cvs.openbsd.org>2009-07-09 06:40:21 +0000
commit7102133cd17130c7a4ab4135de6eaf688869f918 (patch)
treea54a2bf1ec23212b67a45b1263ee5fb07932851f /sys
parent1d8becc5e11743573fc573fb6fb35c727c93211a (diff)
unsigned -> unsigned int
ok claudio@, henning@
Diffstat (limited to 'sys')
-rw-r--r--sys/net/if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if.c b/sys/net/if.c
index b6311d511e3..c1baaf9f921 100644
--- a/sys/net/if.c
+++ b/sys/net/if.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if.c,v 1.196 2009/06/06 12:31:17 rainer Exp $ */
+/* $OpenBSD: if.c,v 1.197 2009/07/09 06:40:20 blambert Exp $ */
/* $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $ */
/*
@@ -307,7 +307,7 @@ if_attachsetup(struct ifnet *ifp)
void
if_alloc_sadl(struct ifnet *ifp)
{
- unsigned socksize, ifasize;
+ unsigned int socksize, ifasize;
int namelen, masklen;
struct sockaddr_dl *sdl;
struct ifaddr *ifa;