diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 19:49:59 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 19:49:59 +0000 |
commit | daae9f299192884e5d857eaeaac86d8436054b47 (patch) | |
tree | 490f012110c2e7cb4878019c5948b38369eba2ad /usr.sbin/bootpd/dovend.c | |
parent | a5b8d9658ecc4a7d613b68e919d12cf97f878d82 (diff) |
unsigned to unsigned int
Diffstat (limited to 'usr.sbin/bootpd/dovend.c')
-rw-r--r-- | usr.sbin/bootpd/dovend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bootpd/dovend.c b/usr.sbin/bootpd/dovend.c index ba6ab288b8b..3adbdf3427e 100644 --- a/usr.sbin/bootpd/dovend.c +++ b/usr.sbin/bootpd/dovend.c @@ -293,7 +293,7 @@ insert_ip(tag, iplist, dest, bytesleft) int *bytesleft; { struct in_addr *addrptr; - unsigned addrcount = 1; + unsigned int addrcount = 1; byte *d; if (iplist == NULL) |