diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-06 20:16:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-06 20:16:31 +0000 |
commit | 316c71ad8113c18a17ca744260d97a178a80d0cc (patch) | |
tree | c3fa2eaa986284eea4811e31ca309467ac95a1ae | |
parent | be131685ac34f7b453fc1d50d9b71702eb399f0e (diff) |
Use a size_t when necesary.
-rw-r--r-- | usr.sbin/ipsend/common/sock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ipsend/common/sock.c b/usr.sbin/ipsend/common/sock.c index 70c2e390cfc..736f616f7a5 100644 --- a/usr.sbin/ipsend/common/sock.c +++ b/usr.sbin/ipsend/common/sock.c @@ -217,7 +217,8 @@ struct kinfo_proc *getproc() { static struct kinfo_proc kp; pid_t pid = getpid(); - int siz, n, mib[4]; + int mib[4]; + size_t n; mib[0] = CTL_KERN; mib[1] = KERN_PROC; |