diff options
author | kevlo <kevlo@FreeBSD.org> | 2010-11-20 15:22:16 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2010-11-20 15:22:16 +0000 |
commit | 951f9264d71bae0844b8dccfc545b07625c09cee (patch) | |
tree | b46f3b5906b7d3c57dfb06c157dc2b7be7eaa610 /usr.bin/vmstat | |
parent | 2bd9940d99668bc6b771faa4d11850cf9ce056b3 (diff) | |
download | FreeBSD-src-951f9264d71bae0844b8dccfc545b07625c09cee.zip FreeBSD-src-951f9264d71bae0844b8dccfc545b07625c09cee.tar.gz |
Remove unused variable
Diffstat (limited to 'usr.bin/vmstat')
-rw-r--r-- | usr.bin/vmstat/vmstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index 7583142..c1d6181 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -428,7 +428,7 @@ fill_pcpu(struct pcpu ***pcpup, int* maxcpup) { struct pcpu **pcpu; - int maxcpu, size, i; + int maxcpu, i; *pcpup = NULL; |