aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/netstat/mbuf.c
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-08-18 13:36:47 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-08-18 13:36:47 +0000
commitfb5a5a81ea30dffde8b05c5131a80c5cd342825c (patch)
treec4a4c8aab0fb7f6a83a726a81a8d4ed4193ce1c5 /usr.bin/netstat/mbuf.c
parent96a332e8f9a2ba4d9eb36b73b89e84e3d4dca8af (diff)
downloadsrc-fb5a5a81ea30dffde8b05c5131a80c5cd342825c.tar.gz
src-fb5a5a81ea30dffde8b05c5131a80c5cd342825c.zip
Change a variable from int to size_t.
Notes
Notes: svn path=/head/; revision=38427
Diffstat (limited to 'usr.bin/netstat/mbuf.c')
-rw-r--r--usr.bin/netstat/mbuf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/netstat/mbuf.c b/usr.bin/netstat/mbuf.c
index 5ea74230b757..421e3e7386da 100644
--- a/usr.bin/netstat/mbuf.c
+++ b/usr.bin/netstat/mbuf.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)mbuf.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
- "$Id: mbuf.c,v 1.11 1998/05/15 20:19:18 wollman Exp $";
+ "$Id: mbuf.c,v 1.12 1998/07/06 21:01:26 bde Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -99,8 +99,8 @@ mbpr()
register int totmem, totfree, totmbufs;
register int i;
register struct mbtypes *mp;
- int name[3], nmbclusters, nmbclen;
- size_t mbstatlen;
+ int name[3], nmbclusters;
+ size_t nmbclen, mbstatlen;
name[0] = CTL_KERN;
name[1] = KERN_IPC;