diff options
| author | Alan Somers <asomers@FreeBSD.org> | 2017-12-14 15:41:32 +0000 |
|---|---|---|
| committer | Alan Somers <asomers@FreeBSD.org> | 2017-12-14 15:41:32 +0000 |
| commit | afe6f8358ec930a9b7db055d986e5a37f84ebe21 (patch) | |
| tree | 918bdb569a2983b28b9f680511a954da131db24e /sbin/dhclient/inet.c | |
| parent | aea10f36da907ff7808d1a2e9c248f696eaef6aa (diff) | |
Notes
Diffstat (limited to 'sbin/dhclient/inet.c')
| -rw-r--r-- | sbin/dhclient/inet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/inet.c b/sbin/dhclient/inet.c index 759d69387d4d5..c72a7f6b702ed 100644 --- a/sbin/dhclient/inet.c +++ b/sbin/dhclient/inet.c @@ -56,7 +56,7 @@ struct iaddr subnet_number(struct iaddr addr, struct iaddr mask) { struct iaddr rv; - int i; + unsigned i; rv.len = 0; @@ -79,7 +79,7 @@ struct iaddr broadcast_addr(struct iaddr subnet, struct iaddr mask) { struct iaddr rv; - int i; + unsigned i; if (subnet.len != mask.len) { rv.len = 0; |
